Pretty simple - I have a .swf loaded via http that is accessing data from the
same server using https via HTTPService. I'm using the 'url' property in the
HTTPService and not using the proxy.
I have the following crossdomain.xml file in the DocumentRoot of the server:
--------
<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>
--------
However, I still get a sandbox error when loading the https data (the error
indicates that the https load is the problem). The crossdomain.xml file _is_
readable and in some debug sessions I've even loaded explicitly it using
Security.loadPolicyFile().
I'm using a nightly Flex 4 build that's about 2 weeks old. Guidance anyone?
TYVM