I've been tearing my hair out over this for a while.

So I've made a simple socket server using php, mostly derived from the kirupa tutorial on using sockets:

http://www.kirupa.com/developer/flash8/php5sockets_flash8_5.htm

Then within Flex I've made an XMLSocket and had it connect. Now over the local network at my house (a few macs with apache) I've had computers happily communicating with each other through this socket. But when I try to do the same on the server at work (Windows 2008 r2 using IIS) I constantly get the same errors in AIR:

Error #2044: Unhandled ioError:. text=Error #2031: Socket Error. URL: 192.168.x.x

And also

Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: app:/IS.swf cannot load data from 192.168.x.x:2050.

I'm using a crossdomain policy file that allows all ports and all domains, but still no go.

The thing that is particularly frustrating is that it works fine on my other network, without any crossdomain file. So I'm worried it might have something to do with the microsoft server, or maybe I'm just missing something obvious...

I've looked around on the internet, and there seem to be a lot of people who are equally baffled, but I've yet to find a solution...

Thanks to anyone who responds!

Michael

link|improve this question

This may be obvious but have you checked the windows firewall (or physical firewall if one exists) for that port being open on the server? I would suggest trying that then using Charles/Wireshark to debug network traffic and as a last ditch effort write a small Java app that connects to the socket server and reads data from it to see if it's a problem with the Flex client or something with the server. – shaunhusain Mar 31 '11 at 20:50
please post your crossdomain.xml and also what port are you dishing out your crossdoamin on? – The_asMan Mar 31 '11 at 21:49
this error code Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: app:/IS.swf cannot load data from 192.168.x.x:2050. is telling me that you trying to access a local network address and it can't possibly be one at your work. :) – The_asMan Mar 31 '11 at 21:50
Yes, it was that obvious - the firewall was indeed the problem. Thanks for your advice, all of you, and sorry for being such an idiot! – Michael Beeson Apr 2 '11 at 12:56
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.