Hi guys,

I have this on my flash
PHP Code:
var stream1:Sound = new Sound();
stream1.load(new URLRequest("http://ipaddress:port/"));
Security.allowDomain("*");
Security.allowInsecureDomain("*");
Security.loadPolicyFile("http://mysite.com/crossdomain.xml");
stream1.play(); 
It works perfectly locally.
When i upload it in my IIS server, or in my hosting server, the sound doesn't play.

I created a cross domain policy *.xml file in my server's root folder with this:
PHP Code:
<cross-domain-policy 
xmlns
:xsi="http://mySite.com"
xsi:noNamespaceSchemaLocation="http://www.adobe.com/xml/schemas/PolicyFile.xsd">
 <
allow-access-from domain="streamSiteIpAddress:sitePort"/>
 <
allow-access-from domain="streamSiteIpAdress"/>
<
allow-access-from domain="*" secure="false" to-ports="*">
</
cross-domain-policy
No success. Thanks