Question : Flash XmlSocket Receiving Data Issue Only When Run as Web Site <policy-file-request/> Problem

Okay here is the deal. I'm working on a simple flash chat Client program.. I do have experience with socket programming.. I whipped up a quick Vb.net Socket server to handle passing text back an forth.. Since i just finished creating a FileSharing with chatting client and server this was no problem..

What happens is when i run the program from my machine it passes the data to the server and the server passes it back perfect no problems.. The Flash page receives the data fine.
But then i try running it under my IIS i actually made it public if you'd like to see.. http://71.225.35.127/FlashChatClient/ChatClient.html   that is the public address. But I usually just run it locally from http://chadslaptop/FlashChatClient/ChatClient.html. And for the life of me it won't pass the data back.. I can't seem to figure out why the server gets the data and sends it but where does it go?? I've already eliminated Firewalls. I looked into crossdomain.xml and added all domains have access. and put it in my root folder as well as my program file.. Still nothing.. What am i doing wrong?

here is Some of my simple code.. But i don't think its a code issue It does work just not when i run it as a website.

this.onLoad = function() {
      TmpChat = "";
      TmpInput = "";
      UserName = "";
      mySocket = new XMLSocket();
      mySocket.connect("71.225.35.127", 20415);
      mySocket.onConnect = handleConnect;
      mySocket.onData = HandleData;
}

function HandleData(TmpText) {
            TmpChat = TmpChat + TmpText + chr(13);
}

on (release){
mySocket.send(TmpInput);
}

Can anyone help me.. I didn't think this would be that hard. And i was making fast progress till i tried running it as a website.

Answer : Flash XmlSocket Receiving Data Issue Only When Run as Web Site <policy-file-request/> Problem

Well I solved this yestarday. I was really close to solving the problem  the other night..
The problem is in the Server, when a Flash Client thats not running locally trys to Connect to any Socket Server it needs a policy file request..
When my Client trys and connects its sends to the server.. The server can then send back the xml fiile through the stream..  Which looks something like this:
ccess-from domain='*' to-ports='*' /> + null
You can change * to specify specific domains and ports * just means all

Now you need the null at the end or the flash client won't understand when to stop.. Its kinds like there end Command Handler..  The flash client should except this policy and then requests another connection to the server and boom your connected.. It always seems to request 2 connections.. which is wierd.. But hey Problem is fixed so i'm happy i can finally continue with my chat program..
Random Solutions  
 
programming4us programming4us