Top "Tcplistener" questions

.NET Framework Class that listens for connections from TCP network clients.

How many socket connections can a web server handle?

Say if I was to get shared, virtual or dedicated hosting, I read somewhere a server/machine can only handle 64,000 …

http tcp network-programming hosting tcplistener
How do I fix the error "Only one usage of each socket address (protocol/network address/port) is normally permitted"?

I've done a lot of googling but not had much luck with my issues. I am new to network programming …

c# exception networking tcplistener
Only one usage of each socket address (protocol/network address/port) is normally permitted?

I've been looking for a serious solution on google and i only get "Regisrty solutions" kind of stuff which i …

c# sockets tcp tcplistener socketexception
How to set up TcpListener to always listen and accept multiple connections?

This is my Server App: public static void Main() { try { IPAddress ipAddress = IPAddress.Parse("127.0.0.1"); Console.WriteLine("Starting TCP listener..."); TcpListener …

c# networking tcplistener
Proper way to stop TcpListener

I am currently using TcpListener to address incoming connections, each of which are given a thread for handling the communication …

c# sockets networking tcplistener
Simple TCPClient/Listener ("hello world") example

All I'm looking for is a simple TCPClient/Listener ("hello world") example. I'm a newbie and Microsoft TCPClient/Listener class …

vb.net client-server tcpclient tcplistener
how do i get TcpListener to accept multiple connections and work with each one individually?

I have an SMTP listener that works well but is only able to receive one connection. My C# code is …

c# .net smtp tcplistener
TcpClient - An existing connection was forcibly closed by the remote host

The Info I have been developing a web http server in c# and decided to add a remote console feature. …

c# tcpclient tcplistener
Difference between TCP Listener and Socket

As far as I know I can create a server using both TCPListener and Socket, so what is the difference …

sockets tcp client serversocket tcplistener
Simple Telnet console that listens and accepts connections

I am new to Telnet and C# and I am trying to create a simple console program. I need a …

c# console-application telnet tcplistener