How to use C# connect to flash with XMLSocket
I write a C# program using TcpListener and TcpClient as a Server side program. But it just can receive the data from Flash but cannot send to flash!
TcpListener _listen = new TcpListener(2000);
_listen.start();
TcpClient _client = _listen.AcceptTcpClient();
NetStream stream = _client.GetStream();
......
|