I am having trouble loading data from a webservice at one domain into a flash
movie at another domain even with the use of a crossdomain.xml file.
My movie is at http://movies.mydomain.com, and the webservice is at
http://www.mydomain.com/web_services/movies.cfc?wsdl. If I run the movie
locally or place a copy of it in the root of http://www.mydomain.com, it loads
the data fine, but if I run it from http://movies.mydomain.com, the data
doesn't load. I have placed a crossdomain.xml file in the root of
http://www.mydomain.com with the following code:
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy>
<cross-domain-policy>
<allow-access-from domain="movies.mydomain.com" />
</cross-domain-policy>
This has had no effect, however. Any suggestions?
cloudyadjectives - 19 May 2005 09:39 GMT
try the following :
<?xml version="1.0" encoding="ISO-8859-1" standalone="no" ?>
<!DOCTYPE cross-domain-policy>
- <cross-domain-policy>
<allow-access-from domain="*" secure="true" />
</cross-domain-policy>
if it doesn't work maybe a proxy-server is included ?
greetz....
.....Patrick