My app is hosted on a server that has a master Socket policy file served from port 843 (http://mysite.com:6666/crossdomain.xml):
<cross-domain-policy> <site-control permitted-cross-domain-policies="master-only"/> <allow-access-from domain="*" to-ports="6666"/> </cross-domain-policy> In the code I explicitly load the master policy file, yet the player still tries to load http://mysite.com:6666/crossdomain.xml And fails when it doesnt find one preventing me from communicating with the service. Is there a step I am missing? Thanks, - Ivo

