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