IPEndPoint IPEP = new IPEndPoint(IPAddress.Any, 4001);
Sunucu = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Sunucu.Bind(ipE);
Sunucu.Listen(5);
Socket Musterisoketi = Sunucu.Accept();
I create server with these codes, use Musterisoketi.Receive(bytedata) code. This code works and receives data from client but Musterisoketi.Send(bytedata) does not works. I can receive data from client but can not send data from server. How can i solve this problem? If you have some applications that using similiar codes can you send it to me for inspiring?
aadasd asdasdaPosted Jan 11, 2010, 6:42 PM
Sam HobbsPosted Jan 9, 2010, 2:22 PM
There are many tutorials about socket programming but they don't want me to post external links. Are you interested in some external links to tutorials about sockey programming using C#?