Turns out that amazon requires a crossdomain.xml file for x-domain
messaging in flash. Here are the steps to solve:
1. First create a file called crossdomain.xml with the following content
(The file name must be exact.)
<?xml version="1.0"?><!DOCTYPE cross-domain-policy SYSTEM
"http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy> <allow-access-from domain="*" /> <allow-http-request-headers-from
domain="*" headers="Authorization"/> <site-control
permitted-cross-domain-policies="master-only" /></cross-domain-policy>
2. Replace the two *'s with the domain you are going to access content
from.
3. Upload the file to the root of your s3 bucket.
On Monday, June 18, 2012 9:07:10 PM UTC-6, Øyvind Sean Kinsey wrote:
> As long as all parties load the same swf from the same domain you should
> be good.
> On Jun 18, 2012 8:05 PM, "schlegelrock" <schlegelr...@gmail.com> wrote:
>> I set up easyXDM to load js and CSS files to my domain from an amazon S3
>> bucket. The loading is working perfectly, except in IE 6/7 where it relies
>> on the swf file for x-domain messaging.
>> Is there something that I need to set up on the S3 side or in easyXDM
>> that would solve this for me? Has anyone had this problem?