Background: We are running ColdFusion8 in a multi-server configuration under IIS. We have an application where we are attempting to allow our customer access through a proxy server. The domain of our *internal* server (for discussion sake) is *dev.company1.org*. The domain they are coming from is * test.company2.com*.
We receive the following error: Channel.Security.Error error Error #2048: Security sandbox violation: https://test.company2.com/system/app/bin/index.swf cannot load data from https://dev.company1.org/flex2gateway/. url: ' https://dev.company1.org/flex2gateway/' All of my searches point to needing to add a crossdomain.xml policy file. I've created one (see below) that should allow any connection and placed it at the web root. Am I missing something completely? ----- begin crossdomain.xml ----- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE cross-domain-policy SYSTEM " http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd"> <cross-domain-policy> <allow-access-from domain="*" secure="false" /> <allow-http-request-headers-from domain="*" headers="*" secure="false" /> </cross-domain-policy> ---- end crossdomain.xml --- Thanks! Dawn
