Asynchronous Socket Programming in C#: Part I
Objective
The objective of this article is to demonstrate a socket-based client/server application that will allow two-way asynchronous communication between a server and multiple client applications. Because this example uses asynchronous methods, the server application does not use threads to communicate to multiple clients (although internally the asynchronous communication mechanism uses threads at the OS level).
The Difference Between Synchronous and Asynchronous Communication in Network Programming
The key difference between synchronous and asynchronous communication can be explained with an example.
Consider a server application that is listening on a specific port to get data from clients. In synchronous receiving, while the server is waiting to receive data from a client, if the stream is empty the main thread will block until the request for data is satisfied. Hence, the server cannot do anything else until it receives data from the client. If another client attempts to connect to the server at that time, the server cannot process that request because it is blocked on the first client. This behavior is not acceptable for a real-world application where we need to support multiple clients at the same time.
In asynchronous communication, while the server is listening or receiving data from a client, it can still process connection requests from other clients as well as receive data from those clients. When a server is receiving asynchronously, a separate thread (at the OS level) listens on the socket and will invoke a callback function (specified when the asynchronous listening was commenced) when a socket event occurs. This callback function in turn will respond and process that socket event. For example, if the remote program writes some data to the socket, a "read data event" (callback function you specify) is invoked; it knows how to read the data from the socket at that point.
Even though this could be achieved by running multiple threads, the C# and .NET frameworks provide a rich set of functionalities to do asynchronous communications without introducing the complexity of threading.
Socket Class
The Socket class ( System.Net.Sockets.Socket ) provides a set of synchronous and asynchronous methods for synchronous or asynchronous communication. As per the .NET naming convention, all the asynchronous method names are created by prefixing the words "Begin" or "End" to the name of the synchronous methods. The methods prefixed with "Begin" and "End" represent a pair of asynchronous methods corresponding to a single synchronous method, as shown in the following table.
| Synchronous Methods | Asynchronous Methods |
|---|---|
Connect() |
BeginConnect() |
Receive() |
BeginReceive() |
Example Application
The example shown in this article has two classes, one implementing the Socket Server and the other implementing the Socket Client.
Figure 1
The Socket Server application is implemented in the SocketServer class (file name SocketServer.cs). This class has a main Socket object (m_mainSocket) and an array of worker Socket objects (m_workerSocket) as members. The main Socket object does the listening for the clients. Once a client is connected, the main Socket transfers the responsibility to process the transactions related to that particular client to a worker Socket. Then, the main Socket goes back and continues listening for other clients.
BeginAccept() and BeginReceive() are the two important methods in the Socket class used by the Socket Server application.
The BeginAccept() method has the following signature:
public IAsyncResult BeginAccept(
AsyncCallback callback, // (1) Function to call when a client
// is connected
object state // (2) State object to preserve socket
// info
);
Essentially, after calling the Listen() method of the main Socket object, you call this asynchronous method and specify a call back function (1), which you designated to do the further processing related to the client connection. The state object (2) can be null in this particular instance.
Because this is an asynchronous method, it will return immediately and the server main thread is free to process other events. Behind the scenes, a separate thread will start listening on that particular socket for client connections. When a client requests a connection, the callback function you specified will be invoked.
Inside the callback function (in the example, the function is named "OnClientConnect()"), you will do further processing related to the client connection.
public void OnClientConnect(IAsyncResult asyn)
{
try
{
// Here we complete/end the BeginAccept() asynchronous call
// by calling EndAccept() - which returns the reference to
// a new Socket object
m_workerSocket[m_clientCount] = m_mainSocket.EndAccept (asyn);
// Let the worker Socket do the further processing for the
// just connected client
WaitForData(m_workerSocket[m_clientCount]);
// Now increment the client count
++m_clientCount;
// Display this client connection as a status message on the GUI
String str = String.Format("Client # {0} connected",
m_clientCount);
textBoxMsg.Text = str;
// Since the main Socket is now free, it can go back and wait
// for other clients who are attempting to connect
m_mainSocket.BeginAccept(new AsyncCallback
( OnClientConnect ),null);
}
catch(ObjectDisposedException)
{
System.Diagnostics.Debugger.Log(0,"1","\n OnClientConnection:
Socket has been closed\n");
}
catch(SocketException se)
{
MessageBox.Show ( se.Message );
}
}
The first thing you do inside the "OnClientConnect()" function is to call the EndAccept() method on the m_mainSocket member object, which will return a reference to another socket object. You set this object reference to one of the members of the array of Socket object references you have (m_workerSocket) and also increment the client counter. Now, because you have a reference to a new socket object that now can do the further transaction with the client, the main Socket (m_mainSocket) is free; hence, you will call its BeginAccept() method again to start waiting for connection requests from other clients.
On the worker socket, you use a similar strategy to receive the data from the client. In place of calling BeginAccept() and EndAccept(), here you call BeginReceive() and EndReceive(). This, in a nutshell, is the Socket Server implementation. While you are sending out data to the clients, the server simply uses the specific worker socket objects to send data to each client.
Figure 1
The Socket Client application is implemented in the SocketClient class (file name SocketClient.cs). Compared to the server where you have a main Socket and an array of worker Sockets, here you only have a single Socket object (m_clientSocket).
The two important methods in Socket class used by the Socket Client application are the Connect() and BeginReceive() methods. Connect() is a synchronous method and is called to connect to a server that is listening for client connections. Because this call will succeed/fail immediately, depending on whether there is an active server listening or not at the specified IP and Port number, a synchronous method is okay for this purpose.
Once a connection is established, you call the BeginReceive() asynchronous function to wait for any socket write activity by the server. Here, if you call a synchronous method, the main thread on the client application will block and you will not be able to send any data to the server while the client is waiting for data from the server.
When there is any write activity on the socket from the server end, the internal thread started by BeginReceive() will invoke the callback function ("OnDataReceived()" in this case), which will take care of the further processing of the data written by the server.
When sending the data to the server, you just call the Send() method on the m_clientSocket object, which will synchronously write the data to the socket.
That is all there is for asynchronous socket communication using multiple clients.
Limitations/Possible Improvements
- Up to 10 simultaneous clients are supported. You can easily modify and support unlimited number of clients by using a HashTable instead of an array.
- For simplicity, when the server sends out a message, it is broadcast to all the connected clients. This could easily be modified to send messages to specific clients by using the Socket object pertaining to that particular client.
- When a client is disconnected, proper action is not taken; the client count is not decremented. The correct way would be to reuse or release resources for other client connections.
Acknowledgement
Even though the content of this article is independently developed, the example program used is influenced by the article on Socket Programming in C# by Ashish Dhar.Update added on 03/01/2005
For a more comprehensive example covering topics such as thread synchronization, please see Part II of this article.

Comments
Errors
Posted by mlam56 on 12/16/2011 05:14amWhen I use your Exe, the system works great. However when I imp[lant the cs file into my C# 2010 Express envirement it will not run. I get an comment on GetHiostByName, should be replaced bij GetHostEntry. It works but is not giving me an IPv4 address. Then I get a error on the IPStr = ipaddress.ToString(); The system stops.
ReplyCross-thread operation not valid
Posted by LMAI on 07/15/2010 01:18pmI love this example - for newbie like me. When I use both exe files for Client PC and Server PC, every is o.k. Then I use SockeClient.exe file to run on the Client PC and source code SocketServer.cs on other PC as a client. The Server sending a msg to Client is o.k But, when Client sends msg to Server, the Cross-thread Operation not valid message takes place. at line richTextBoxReceivedMsg.AppendText(szData); in method public void OnDataReceived(IAsyncResult asyn). Moreover, Client sends 123456 Server just get "1\0" on the szData Could anyone show me how to solve this problem? I use VS2008 Cheers.
ReplyWriting received message to screen.
Posted by Gytax on 10/21/2009 08:00amHello there, I am quite new to Socket Programming and I'm creating a program using the example code explained here. Now, when I receive a message from a client, I want to show: Client 1: message. I can't seem to get that to work: what I get now is: Client 1: m Client 1: e...etc public void OnDataReceived(IAsyncResult asyn) { try { SocketPacket socketData = (SocketPacket)asyn.AsyncState; int iRx = 0; iRx = socketData.m_currentSocket.EndReceive(asyn); String remEP = socketData.m_currentSocket.RemoteEndPoint.ToString(); char[] chars = new char[iRx + 1]; System.Text.Decoder d = System.Text.Encoding.UTF8.GetDecoder(); int charLen = d.GetChars(socketData.dataBuffer, 0, iRx, chars, 0); System.String szData = new System.String(chars); txtLog.AppendText(szData + "\r\n"); WaitForData(socketData.m_currentSocket); } catch(SocketException se) { MessageBox.Show(se.Message); } } That's the code I am modifying. Any help would be greatly appreciated.-
ReplyRe: Writing received message to screen
Posted by Hemicharger99 on 11/03/2009 03:32pmThe problem is that the socketData.dataBuffer is only holding one character at a time, and when you are appending the txtLog textbox, it will display as Client 1: m Client 1: e Client 1: s...etc You can increase the size of the buffer to accomodate the size of the socket's "ReceiveBufferSize". Also, if you are writing to the screen, be sure to use a delegate to update your textbox. I apologize, this is in VB.Net instead of c#, but you can understand the idea of it. i.e. Delegate Sub DoUpdateTextBox(ByVal pMsg As String) Public Sub UpdateTextBox(ByVal pMsg As String) If (Me.InvokeRequired) Then Me.BeginInvoke(New DoUpdateTextBox(AddressOf UpdateTextBox), New Object() {pMsg}) Else txtLog.AppendText(pMsg + "\r\n") End If End SubReplyBug in the server code
Posted by Nilsen on 10/01/2009 04:28amIn the OnClientConnect-method on the server you must NOT call the BeginAccept after each connection! The main socket is already listening for more connections - doing this will result in memory being eaten! The number of simultaneous connections you specify when calling m_MainSocket.Listen(x) is actually telling the socket class how many instances of OnClientConnect that can run SIMULTAENOUSLY. And even if you'd called .Listen(1), your code would still work perfectly since you're branching the data retrieval to a worker socket.
I had your code in a high-stress socket application recently and I couldn't for the love of my life find out why my program always seemed to crash after about 5-6 hours of runtime. Task Manager showed that it had grown from about 15 MB of memory usage to about 250. Turns out it finally reached a point where the Socket system of .NET got clogged up, and this exception was the result each time it called .EndAccept:
An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full
What put me on the right track was when I coded in a "Thread.Sleep(5000)" in the exception-catch. Even after I did this, the exceptions occured many times per second (I could see that from log files) so this indicated to me that there was MANY threads (hundreds) that were waiting for connections, even though I had called Listen(3).
After I removed the BeginAccept-line, my program can now run "forever" :-)
ReplySource vs. Exec
Posted by chalydo on 08/28/2008 12:46pmWhen I download the executable it runs fine but if I download the source and try and compile(VS2005) I get thread errors about trying to modify variable outside of thread. ????
ReplyPerformance considerations
Posted by maxdev on 04/05/2008 06:41pmThis tutorial provides just basic network programming knowledge, in order to build high performance client - server solution you need more than that. Clean and scalable server architecture should be designed. Not easy task at all. I would suggest to take a look at XF.Server component for server solutions written in .NET / C# / VB.NET The only thing that should be added is the server's business logic. I've tried the component, it has nice design and interesting solutions to get maximum performance.
ReplyThank you
Posted by AliRafiee on 01/24/2008 03:03pmVery clear and simple. It is a very good start for anyone trying to do socket programing in C#.
ReplyMAX_CLIENTS
Posted by Zytan on 09/13/2007 11:53amMAX_CLIENTS is not used: private Socket[] m_workerSocket = new Socket[10];
-
Replyport number
Posted by Zytan on 09/13/2007 04:51pmA port number can be from 0 to 65535, not -32768 to 32767, so Int16 is wrong.
Replyslightly better handling of the encoding/decoding
Posted by LukasHazlehurst on 12/12/2006 06:28pmOnClientConnect confusion
Posted by lee_connell on 07/24/2006 01:06pmGreat Article! Thank you! I am confused because I am under the impression that the main socket is ALWAYS listening for new connections. You are calling: //////////// m_mainSocket.BeginAccept(new AsyncCallback ( OnClientConnect ),null); //////////// Is the main socket blocked from listening to requests until you call this method? What if you were processing a bit of data in this event?
-
ReplyRe: OnCLientConnect confusion
Posted by Nilsen on 10/01/2009 04:30amYou're absolutely right. I see you wrote this three years ago, but I've been battling this bug for a week now in 2009 so I hope other people read this post before implementing the code above! You must NOT call BeginAccept over and over again.
ReplyLoading, Please Wait ...