I have the following code that works great when ran in a Flex 2/3 app:
var gateway:NetConnection = new NetConnection();
gateway.connect("https://mydomain.com/gateway.php");
gateway.call("Mailer.Send",new Responder(GotResult,GotError));
When I try to run the same code in a project setup to use LCDS I get
the following error
*** Security Sandbox Violation ***
Connection to https://mydomain.com/gateway.php halted - not permitted
from http://localhost:8700/flex/MyProject/test.mxml.swf?debug=true
I've placed crossdomain.xml files on BOTH server's to no avail. (I've
opened up my ports in the crossdomain.xml too).
Any security experts out there?