Socket Communication in C#- IP-Port

Posted by Ahmet Altun on Stack Overflow See other posts from Stack Overflow or by Ahmet Altun
Published on 2010-03-29T13:45:33Z Indexed on 2010/03/29 13:53 UTC
Read the original article Hit count: 365

Filed under:
|

I am testing my socket programs at home, in local network.

Server and client programs are running on seperate machines.

Server program socket is binded as: serverSocket.Bind(new IPEndPoint(IPAddress.Parse("127.0.0.1"), 8999));

Client program (on the other computer) is connected as: clientSocket.Connect(IPAddress.Parse("192.168.2.3"), 8999);

Why can Client not communicate with server? Do I need to make some firewall configuration or something like that? Or am I writing Server Ip incorrectly to the Client? (I got it from cmd->ipconfig of server)

© Stack Overflow or respective owner

Related posts about socket

Related posts about port