Avatar

Level 1

I found solution, but I don't know, if it's pure.

When I change crossdomain.xml like this:

<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
    <site-control permitted-cross-domain-policies="all" />
    <allow-access-from domain="*" to-ports="*" secure="true"/>
    <allow-access-from domain="*" to-ports="*" secure="false"/>
    <allow-http-request-headers-from domain="*" headers="*" secure="true" />
    <allow-http-request-headers-from domain="*" headers="*" secure="false" />
</cross-domain-policy>

It started to work fine.

Strange solution...

David