I am running trying to access form my local server a remote server.
Error #2044: SecurityErrorEvent : text=Error #2048: security sandbox : http://mydomain1.com/debaton/debaton.swf cannot access data from http://mydomain2.com/~debaton/services/gateway.php.
So I put crossdomain on http://mydomain2.com/~debaton/crossdomain.xml
<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*" />
</cross-domain-policy>
and put
params.allowscriptaccess = "always";
in my HTML.
But still has this error! What am I doing wrong ?