
September 26th, 2008, 03:48 AM
|
|
Registered User
|
|
Join Date: Sep 2008
Posts: 1
Time spent in forums: 10 m 15 sec
Reputation Power: 0
|
|
|
Cross Domain
Hi
You are on the right way.
When you required information from an application on a host, you have, for flash security purpose, to copy the crossdomain.xml file in the root web dir on the server hosting the application.
Now maybe the problem comes from your crossdomain.xml file, try this one :
PHP Code:
<?xml version="1.0"?>
<cross-domain-policy>
<allow-http-request-headers-from domain="*" headers="*" secure="false" />
<allow-access-from domain="*" secure="false" />
</cross-domain-policy>
Regards
Johann
|