hey diesel
my knowledge in crossing domains isn't that good but i might help little bit
i have 2 solutions and hopefully one of them will do the work
First Try this
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="domain1.com"/>
<allow-access-from domain="*.domain1.com"/>
<allow-access-from domain="www.domain1.com"/>
<allow-access-from domain="domain2.com"/>
<allow-access-from domain="*.domain2.com"/>
<allow-access-from domain="www.domain2.com"/>
<allow-access-from domain="domain3.com"/>
<allow-access-from domain="*.domain3.com"/>
<allow-access-from domain="www.domain3.com"/>
</cross-domain-policy>
by changing the domain1, domain2, domain3 to the ones you want..
Second, but this one isn't recommended
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>
you have to put the the crossdomain.xml in the root .. of your website
Hope i helped
Regards
uaenoob
my knowledge in crossing domains isn't that good but i might help little bit
i have 2 solutions and hopefully one of them will do the work
First Try this
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="domain1.com"/>
<allow-access-from domain="*.domain1.com"/>
<allow-access-from domain="www.domain1.com"/>
<allow-access-from domain="domain2.com"/>
<allow-access-from domain="*.domain2.com"/>
<allow-access-from domain="www.domain2.com"/>
<allow-access-from domain="domain3.com"/>
<allow-access-from domain="*.domain3.com"/>
<allow-access-from domain="www.domain3.com"/>
</cross-domain-policy>
by changing the domain1, domain2, domain3 to the ones you want..
Second, but this one isn't recommended
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>
you have to put the the crossdomain.xml in the root .. of your website
Hope i helped
Regards
uaenoob