I am creating an application in Flex (AS3), where I need to get information from an external url. But when using the URLLoader the error occurs:
"Error # 2044: Unhandled securityError :. text = Error # 2048: Security Sandbox Violation"
My code:
sUrlListas = "https://www.us8.api.mailchimp.com/2.0/lists/members.json?apikey=XXXXX&id=XXX;
urlLoader2 = new URLLoader ();
urlLoader2.load (new URLRequest (sUrlListas));
My crossdomain is:
<cross-domain-policy>
<site-control permitted-cross-domain-policies = "all" />
<allow-access-from domain = "*" secure = "false" to-ports = "*" />
</ cross-domain-policy>
The crossdomain them is:
<cross-domain-policy>
<allow-access-from domain = "*" />
</ cross-domain-policy>
Rodo this application on localhost. I've read a lot about the problem of crossdomain be, but does not seem to be exactly this problem.
Could anyone help?