In code I use this before URLLoader (swf will be used with many different domains and this will be changing in time):
Security.allowDomain("*");
In http://domain.com/crossdomain.xml, I have this for test:
<?xml version="1.0" ?>
<cross-domain-policy>
<site-control permitted-cross-domain-policies="master-only"/>
<allow-access-from domain="*"/>
<allow-http-request-headers-from domain="*" headers="*"/>
</cross-domain-policy>
I am trying to access http://domain.com/files/filename.bin and still get security error.
Ok, I used crossdomainmaker.com to create access for any domain (for test) and copied it directly into file server and also test if domain.com/crossdomain.xml is accessible. I checked flashlog.txt and found that domain.com/crossdomain.xml is loaded but will be ignored because of its syntax error - its generated by crossdomainmaker website and also correct with specifications and examples over internet, so what can I do?