I’m somewhat new to Unity for an engine. My game is using WWW to get some info from my site.
I’m running into “SecurityException: No valid crossdomain policy available to allow access”
I manually went to “crossdomain.xml” and resaved as UTF-8 (ASCII subset)
crossdomain.xml is loadable from the root of my site. (localhost) http://127.0.0.1/crossdomain.xml. I can open that in a browser and it pops up.
The contents of the file is:
<?xml version="1.0"?>The file it is grabbing from the site is an xml file, in a sub folder called Users. I wasn’t sure if the crossdomain.xml file needed to be in the same folder as the content, so I have a copy of it there as well. Despite that, I keep receiving the error.
I’ve looked at a dozen pages/sites at least on this issue, and tried all sorts of things with now luck.
I’m running Windows 8, with IIS. The page is on the IIS. I can access all the paths from a browser without issue.
Any clue what I’m doing wrong? - Thanks.