I have a series of course templates created in Flash that access their content (XML and FLV) from a different server. These were working fine with a crossdomain.xml file in place with the following code and the user having player 9:
When users upgraded to 10, there was no data coming in. The issue has to be security because we have other courses with the same structure, but their content is on the same server and there is no "Security.loadPolicyFile" call.Code:<?xml version="1.0"?> <cross-domain-policy> <allow-access-from domain="training.bulab.com" /> <allow-access-from domain="memnt29.bulab.com" /> <allow-access-from domain="memnt9.bulab.com" /> </cross-domain-policy>
I tried reading the lame Adobe documentation on the security "upgrades" in 10 and the best I could do is the following:
This is in the root directory that contains multiple directories with files for each of the courses. This is the only crossdomain file in the main or sub-directories. The AS that accesses the file is:Code:<?xml version="1.0"?> <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> <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>
The data is not getting through. Any help would be greatly appreciated!Code:Security.loadPolicyFile("http://ptws1.bulab.com/userfiles/portaltraining/crossdomain.xml");




Reply With Quote