I´m working on a flash multiplayer application, using a processing server and xmlsocket in flash to send messages to the flash clients. This all works perfectly when the 2 flash players are connected to the same network. But when connecting to the server from a different network I get the following error:

[SecurityErrorEvent type="securityError" bubbles=false cancelable=false eventPhase=2 text="Error #2048: Security sandbox violation: file:///processingserver/bin/game.swf cannot load data from xxx.xxx.xxx.xxx:9001."] [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2031: Socket Error. URL: xxx.xxx.xxx.xxx"]

I think this has something to do with crossdomain policies, but I am sending a policy through the xmlsocket in the processing server so I don't understand why it doesn't work :(

Here is the processing code:

import processing.net.*;

Server s; Client c; String input; int[] data;

String flashDomainPolicy = "" +"" +"" +"" +"";

void setup() { size(450, 255); background(204); stroke(0);
frameRate(5); // Slow it down a little s = new Server(this, 9001); // Start a simple server on a port }

void draw() { background(204); // Receive data from client c = s.available(); if (c != null) {

input = c.readString();
//print(c);
//print("\n not trimmed" + c.readString());    // print("\n trimmed" + trim(c.readString()));

//String message = trim(c.readString());
text("received: " + input, 10, 10);

if (match(input,"policy-file-request") != null) //match(message)
  {
    sendFlashPolicy(s);
  }

//input = input.substring(0, input.indexOf("\n")); // Only up to the newline
//data = int(split(input, ' ')); // Split values into an array



//stroke(0);
//line(data[0], data[1], data[2], data[3]);

//s.write(data[0]);
s.write(input);
s.write(0);   } }    void sendFlashPolicy(Server s) {
s.write(flashDomainPolicy);//+char(0));
s.write(0);
System.out.println("Sending Flash policy file"); }

And here is the flash code:

public function LoginState() { FlxG.mouse.show(); Security.allowDomain("*");

        serverSocket = new XMLSocket();
        NetworkManager.socket = serverSocket;
        serverSocket.addEventListener(Event.CONNECT, handleConnect);
        serverSocket.addEventListener(Event.CLOSE, handleClose);

        serverSocket.addEventListener(IOErrorEvent.NETWORK_ERROR, networkError);
        serverSocket.addEventListener(IOErrorEvent.IO_ERROR, IOerror);
        serverSocket.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityError);

        textfield = new TextField();
        textfield.textColor = 0xFFFFFF;
        textfield.text = "input server ip";
        FlxG.stage.addChild(textfield);
        textfield.type = TextFieldType.INPUT;

        var playButton:FlxButton = new FlxButton(FlxG.width / 2 - 40, FlxG.height / 3 + 100, "submit", onPlay);
        add(playButton);



    }

    private function securityError(e:SecurityErrorEvent):void 
    {
        trace(e);
        add(new FlxText(100, 100, 200, e.text));
    }

    protected function onPlay():void 
    {
        serverSocket.connect(textfield.text, 9001); //directly, or use 128.0.0.1 to connect to processing client
    }

    private function IOerror(e:IOErrorEvent) : void
    {
        trace(e);
        add(new FlxText(100, 100, 200, e.toString()));
    }

    private function networkError(e:IOErrorEvent):void 
    {
        add(new FlxText(100, 100, 200, e.toString()));
    }

    private function handleConnect(e:Event):void {
        trace("XML Socket connected!");

        //serverSocket.send("policy-file-request");
        serverSocket.send("<policy-file-request/>");
        FlxG.switchState(new GameState());
    }

    private function handleClose(e:Event):void {
        trace("XML Socket closed!");

        add(new FlxText(100, 100, 200, "socket closed"));
    }



    private function handleIncoming(e:DataEvent):void {
        trace("Incoming:",e.data);
        var XMLData:XMLList=new XMLList(e.data);
        trace(e.data);
    }

}

}

We're hoping to fix this as soon as possible for the global gamejam, so help is much appreciated!

link|improve this question

33% accept rate
I'm hoping you will get your accept rate up so you get answers so it will be fixed for the global gamejam. – The_asMan Jan 27 at 20:58
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.