I had flash talking to node.js via sockets on localhost, then I migrated it to EC2 instance with linux. Now I'm getting a sandbox security error, I tried using:
Security.loadPolicyFile("xmlsocket://" + host + ":" + "1337");
But I can't seem to see any requests at all on the server. Also, I'm using Flashdevelop with "Use Network services" set to true. And on the server I installed a specific module for this called FlashPolicyFileServer, but I still can't get it working. Any ideas?
EC2 instance by default only enables ssh port (port 22), so you have to manually open the port (1337 in your case) you want in "Security Groups" setup menu.