Socket Programming in C# .Net

Dot Net Programming in C# with source code and DLL file. Covers Socket, Remoting, Stored Procedure, ASP.Net, IO, Web Service, Windows Service, Installer, Console Programming, Win Forms, Web Forms, Ajax, Web publishing, Text Chat, Large File Transfer, File Handling etc.

Download source code from here

Asynchronous Socket Client for Beginner

It's a sample client socket code that code based on MSDN sample code.

using System;

using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Text;

// State object for receiving data from remote device.
public class StateObject
{
// Client socket.
public Socket workSocket = null;
// Size of receive buffer.
public const int BufferSize = 1024;
// Receive buffer.
public byte[] buffer = new byte[BufferSize];
// Received data string.
public StringBuilder sb = new StringBuilder();
}

public class AsynchronousClient
{
// The port number for the remote device.
private const int port = 5656;

// ManualResetEvent instances signal completion.
private static ManualResetEvent connectDone =new ManualResetEvent(false);
private static ManualResetEvent sendDone =new ManualResetEvent(false);
private static ManualResetEvent receiveDone =new ManualResetEvent(false);

// The response from the remote device.
private static String response = String.Empty;

private static void StartClient()
{
// Connect to a remote device.
try
{
// Establish the remote endpoint for the socket.
IPHostEntry ipHostInfo = Dns.Resolve("localhost");
IPAddress ipAddress = ipHostInfo.AddressList[0];
IPEndPoint ep = new IPEndPoint(ipAddress, port);

// Create a TCP/IP socket.
Socket client = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);

// Connect to the remote endpoint.
client.BeginConnect(ep,
new AsyncCallback(ConnectCallback), client);
connectDone.WaitOne();

// Send test data to the remote device.
Send(client, "Data Send to local server.");
sendDone.WaitOne();

// Receive the response from the remote device.
Receive(client);
receiveDone.WaitOne();

// Write the response to the console.
Console.WriteLine("Response received : {0}", response);

// Release the socket.
client.Shutdown(SocketShutdown.Both);
client.Close();

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void ConnectCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket client = (Socket)ar.AsyncState;

// Complete the connection.
client.EndConnect(ar);

Console.WriteLine("Socket connected to {0}",client.RemoteEndPoint.ToString());

// Signal that the connection has been made.
connectDone.Set();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void Receive(Socket client)
{
try
{
// Create the state object.
StateObject state = new StateObject();
state.workSocket = client;

// Begin receiving the data from the remote device.
client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReceiveCallback), state);
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void ReceiveCallback(IAsyncResult ar)
{
try
{
// Retrieve the state object and the client socket
// from the asynchronous state object.
StateObject state = (StateObject)ar.AsyncState;
Socket client = state.workSocket;

// Read data from the remote device.
int bytesRead = client.EndReceive(ar);

if (bytesRead > 0)
{
// There might be more data, so store the data received so far.
state.sb.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead));

// Get the rest of the data.
client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,new AsyncCallback(ReceiveCallback), state);
}
else
{
// All the data has arrived; put it in response.
if (state.sb.Length > 1)
{
response = state.sb.ToString();
}
// Signal that all bytes have been received.
receiveDone.Set();
}
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void Send(Socket client, String data)
{
// Convert the string data to byte data using ASCII encoding.
byte[] byteData = Encoding.ASCII.GetBytes(data);

// Begin sending the data to the remote device.
client.BeginSend(byteData, 0, byteData.Length, 0,new AsyncCallback(SendCallback), client);
}

private static void SendCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket client = (Socket)ar.AsyncState;

// Complete sending the data to the remote device.
int bytesSent = client.EndSend(ar);
Console.WriteLine("Sent {0} bytes to server.", bytesSent);

// Signal that all bytes have been sent.
sendDone.Set();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

public static int Main(String[] args)
{
StartClient();
Console.ReadLine();
return 0;
}
}

Labels: , , , ,

Asynchronous Socket Client for Beginner

It's a sample client socket code that code based on MSDN sample code.

using System;

using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Text;

// State object for receiving data from remote device.
public class StateObject
{
// Client socket.
public Socket workSocket = null;
// Size of receive buffer.
public const int BufferSize = 1024;
// Receive buffer.
public byte[] buffer = new byte[BufferSize];
// Received data string.
public StringBuilder sb = new StringBuilder();
}

public class AsynchronousClient
{
// The port number for the remote device.
private const int port = 5656;

// ManualResetEvent instances signal completion.
private static ManualResetEvent connectDone =new ManualResetEvent(false);
private static ManualResetEvent sendDone =new ManualResetEvent(false);
private static ManualResetEvent receiveDone =new ManualResetEvent(false);

// The response from the remote device.
private static String response = String.Empty;

private static void StartClient()
{
// Connect to a remote device.
try
{
// Establish the remote endpoint for the socket.
IPHostEntry ipHostInfo = Dns.Resolve("localhost");
IPAddress ipAddress = ipHostInfo.AddressList[0];
IPEndPoint ep = new IPEndPoint(ipAddress, port);

// Create a TCP/IP socket.
Socket client = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);

// Connect to the remote endpoint.
client.BeginConnect(ep,
new AsyncCallback(ConnectCallback), client);
connectDone.WaitOne();

// Send test data to the remote device.
Send(client, "Data Send to local server.");
sendDone.WaitOne();

// Receive the response from the remote device.
Receive(client);
receiveDone.WaitOne();

// Write the response to the console.
Console.WriteLine("Response received : {0}", response);

// Release the socket.
client.Shutdown(SocketShutdown.Both);
client.Close();

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void ConnectCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket client = (Socket)ar.AsyncState;

// Complete the connection.
client.EndConnect(ar);

Console.WriteLine("Socket connected to {0}",client.RemoteEndPoint.ToString());

// Signal that the connection has been made.
connectDone.Set();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void Receive(Socket client)
{
try
{
// Create the state object.
StateObject state = new StateObject();
state.workSocket = client;

// Begin receiving the data from the remote device.
client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReceiveCallback), state);
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void ReceiveCallback(IAsyncResult ar)
{
try
{
// Retrieve the state object and the client socket
// from the asynchronous state object.
StateObject state = (StateObject)ar.AsyncState;
Socket client = state.workSocket;

// Read data from the remote device.
int bytesRead = client.EndReceive(ar);

if (bytesRead > 0)
{
// There might be more data, so store the data received so far.
state.sb.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead));

// Get the rest of the data.
client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,new AsyncCallback(ReceiveCallback), state);
}
else
{
// All the data has arrived; put it in response.
if (state.sb.Length > 1)
{
response = state.sb.ToString();
}
// Signal that all bytes have been received.
receiveDone.Set();
}
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

private static void Send(Socket client, String data)
{
// Convert the string data to byte data using ASCII encoding.
byte[] byteData = Encoding.ASCII.GetBytes(data);

// Begin sending the data to the remote device.
client.BeginSend(byteData, 0, byteData.Length, 0,new AsyncCallback(SendCallback), client);
}

private static void SendCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket client = (Socket)ar.AsyncState;

// Complete sending the data to the remote device.
int bytesSent = client.EndSend(ar);
Console.WriteLine("Sent {0} bytes to server.", bytesSent);

// Signal that all bytes have been sent.
sendDone.Set();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}

public static int Main(String[] args)
{
StartClient();
Console.ReadLine();
return 0;
}
}

Labels: , , , ,

leave a response

Socket Programming in C# .Net

Dot Net Programming in C# with source code and DLL file. Covers Socket, Remoting, Stored Procedure, ASP.Net, IO, Web Service, Windows Service, Installer, Console Programming, Win Forms, Web Forms, Ajax, Web publishing, Text Chat, Large File Transfer, File Handling etc.

Download source code from here

Asynchronous Socket Server for Beginner

It's a sample Server socket code that code based on MSDN sample code.

That code works asynchronously for send/receive data between client and server. By that code any one can transfer data easily as when he want. Here some string data has been transferred. Before sending string data just it has been converted to byte array and then it has transferred client to server. Now I’m writing code to transfer string data between client and server, but within short time I will write how can transfer huge file data by asynchronous socket.
Now may some one think why we should use Asynchronous socket except synchronous socket? Because using asynchronous socket we can transfer data in different thread and data can transfer more smoothly. If any one try to send large data without any multi-threading model then he will see that when data is transferring then his program looks line ‘crashed’. However, lets describing some portion about that code.

For use socket asynchronously Microsoft has provide very helpful technology in .Net. We just use some inbuilt function with ‘Begin-End’ scenario with three word ‘Accept, Send & Receive’. This functions are:

BeginAccept() - EndAccept()
BeginReceive() - EndReceive()
BeginSend() - EndSend()

These functions when invoke then it create & starts internal thread and starts working with a separate thread and continue working. So it don’t hamper main thread. Also inter-thread communication done by ‘ManualResetEvent’. ManualResetEvent object can handle it with it’s three functions :
Reset()
Set ()
WaitOne().

Also here has used ‘StringBuilder’ for string operation in spite of simple ‘string’ class. Both class does same work, but ‘StringBuilder’ is very fast than ‘string’, but you can use ‘string’ also.

However, the exact codes are as given below, at then end of that code I’m writing my personal some experience. Let’s see:


using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;

// State object for reading client data asynchronously
public class StateObject
{
// Client socket.
public Socket workSocket = null;
// Size of receive buffer.
public const int BufferSize = 1024;
// Receive buffer.
public byte[] buffer = new byte[BufferSize];
// Received data string.
public StringBuilder sb = new StringBuilder();
}

public class AsynchronousSocketListener
{
// Thread signal.
public static ManualResetEvent allDone = new ManualResetEvent(false);

public AsynchronousSocketListener()
{
}

public static void StartListening()
{
// Temp storage for incoming data.
byte[] recvDataBytes = new Byte[1024];

// Make endpoint for the socket.
//IPAddress serverAdd = Dns.Resolve("localhost"); - That line was wrong

//'baaelSiljan' has noticed it and then I've modified that line, correct line will be as:
IPHostEntry ipHost = Dns.Resolve("localhost");
IPAddress serverAdd = ipHost.AddressList[0];

IPEndPoint ep = new IPEndPoint(serverAdd, 5656);

// Create a TCP/IP socket for listner.
Socket listenerSock = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);

// Bind the socket to the endpoint and wait for listen for incoming connections.
try
{
listenerSock.Bind(ep);
listenerSock.Listen(10);

while (true)
{
// Set the event to nonsignaled state.
allDone.Reset();

// Start an asynchronous socket to listen for connections.
Console.WriteLine("Waiting for Client...");
listenerSock.BeginAccept(
new AsyncCallback(AcceptCallback),
listenerSock);

// Wait until a connection is made before continuing.
allDone.WaitOne();
}

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}

Console.WriteLine("\nPress ENTER to continue...");
Console.Read();

}

public static void AcceptCallback(IAsyncResult ar)
{
// Signal the main thread to continue.
allDone.Set();

// Get the socket that handles the client request.
Socket listener = (Socket)ar.AsyncState;
Socket handler = listener.EndAccept(ar);

// Create the state object.
StateObject state = new StateObject();
state.workSocket = handler;
handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReadCallback), state);
}

public static void ReadCallback(IAsyncResult ar)
{
String content = String.Empty;

// Retrieve the state object and the handler socket
// from the asynchronous state object.
StateObject state = (StateObject)ar.AsyncState;
Socket handler = state.workSocket;

// Read data from the client socket.
int bytesRead = handler.EndReceive(ar);

if (bytesRead > 0)
{
// There might be more data, so store the data received so far.
state.sb.Append(Encoding.ASCII.GetString(
state.buffer, 0, bytesRead));

// Check for end-of-file tag. If it is not there, read
// more data.
content = state.sb.ToString();
if (content.IndexOf("") > -1)
{
// All the data has been read from the
// client. Display it on the console.
Console.WriteLine("Read {0} bytes from socket. \n Data : {1}",
content.Length, content);
// Echo the data back to the client.
Send(handler, content);
}
else
{
// Not all data received. Get more.
handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReadCallback), state);
}
}
}

private static void Send(Socket handler, String data)
{
// Convert the string data to byte data using ASCII encoding.
byte[] byteData = Encoding.ASCII.GetBytes(data);

// Begin sending the data to the remote device.
handler.BeginSend(byteData, 0, byteData.Length, 0,
new AsyncCallback(SendCallback), handler);
}

private static void SendCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket handler = (Socket)ar.AsyncState;

// Complete sending the data to the remote device.
int bytesSent = handler.EndSend(ar);
Console.WriteLine("Sent {0} bytes to client.", bytesSent);

handler.Shutdown(SocketShutdown.Both);
handler.Close();

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}


public static int Main(String[] args)
{
StartListening();
return 0;
}
}

How that code was?
Fine!

But always keep in mind here system is using default thread pool which by default handle maximum 25 thread, which may gives problem in large application, but for small application it’s fine. Also it’s using internal multi-threading technology which is comparatively slower than raw threading program. However let’s carry on.

Labels: , , , , , , ,

Asynchronous Socket Server for Beginner

It's a sample Server socket code that code based on MSDN sample code.

That code works asynchronously for send/receive data between client and server. By that code any one can transfer data easily as when he want. Here some string data has been transferred. Before sending string data just it has been converted to byte array and then it has transferred client to server. Now I’m writing code to transfer string data between client and server, but within short time I will write how can transfer huge file data by asynchronous socket.
Now may some one think why we should use Asynchronous socket except synchronous socket? Because using asynchronous socket we can transfer data in different thread and data can transfer more smoothly. If any one try to send large data without any multi-threading model then he will see that when data is transferring then his program looks line ‘crashed’. However, lets describing some portion about that code.

For use socket asynchronously Microsoft has provide very helpful technology in .Net. We just use some inbuilt function with ‘Begin-End’ scenario with three word ‘Accept, Send & Receive’. This functions are:

BeginAccept() - EndAccept()
BeginReceive() - EndReceive()
BeginSend() - EndSend()

These functions when invoke then it create & starts internal thread and starts working with a separate thread and continue working. So it don’t hamper main thread. Also inter-thread communication done by ‘ManualResetEvent’. ManualResetEvent object can handle it with it’s three functions :
Reset()
Set ()
WaitOne().

Also here has used ‘StringBuilder’ for string operation in spite of simple ‘string’ class. Both class does same work, but ‘StringBuilder’ is very fast than ‘string’, but you can use ‘string’ also.

However, the exact codes are as given below, at then end of that code I’m writing my personal some experience. Let’s see:


using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Threading;

// State object for reading client data asynchronously
public class StateObject
{
// Client socket.
public Socket workSocket = null;
// Size of receive buffer.
public const int BufferSize = 1024;
// Receive buffer.
public byte[] buffer = new byte[BufferSize];
// Received data string.
public StringBuilder sb = new StringBuilder();
}

public class AsynchronousSocketListener
{
// Thread signal.
public static ManualResetEvent allDone = new ManualResetEvent(false);

public AsynchronousSocketListener()
{
}

public static void StartListening()
{
// Temp storage for incoming data.
byte[] recvDataBytes = new Byte[1024];

// Make endpoint for the socket.
//IPAddress serverAdd = Dns.Resolve("localhost"); - That line was wrong

//'baaelSiljan' has noticed it and then I've modified that line, correct line will be as:
IPHostEntry ipHost = Dns.Resolve("localhost");
IPAddress serverAdd = ipHost.AddressList[0];

IPEndPoint ep = new IPEndPoint(serverAdd, 5656);

// Create a TCP/IP socket for listner.
Socket listenerSock = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);

// Bind the socket to the endpoint and wait for listen for incoming connections.
try
{
listenerSock.Bind(ep);
listenerSock.Listen(10);

while (true)
{
// Set the event to nonsignaled state.
allDone.Reset();

// Start an asynchronous socket to listen for connections.
Console.WriteLine("Waiting for Client...");
listenerSock.BeginAccept(
new AsyncCallback(AcceptCallback),
listenerSock);

// Wait until a connection is made before continuing.
allDone.WaitOne();
}

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}

Console.WriteLine("\nPress ENTER to continue...");
Console.Read();

}

public static void AcceptCallback(IAsyncResult ar)
{
// Signal the main thread to continue.
allDone.Set();

// Get the socket that handles the client request.
Socket listener = (Socket)ar.AsyncState;
Socket handler = listener.EndAccept(ar);

// Create the state object.
StateObject state = new StateObject();
state.workSocket = handler;
handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReadCallback), state);
}

public static void ReadCallback(IAsyncResult ar)
{
String content = String.Empty;

// Retrieve the state object and the handler socket
// from the asynchronous state object.
StateObject state = (StateObject)ar.AsyncState;
Socket handler = state.workSocket;

// Read data from the client socket.
int bytesRead = handler.EndReceive(ar);

if (bytesRead > 0)
{
// There might be more data, so store the data received so far.
state.sb.Append(Encoding.ASCII.GetString(
state.buffer, 0, bytesRead));

// Check for end-of-file tag. If it is not there, read
// more data.
content = state.sb.ToString();
if (content.IndexOf("") > -1)
{
// All the data has been read from the
// client. Display it on the console.
Console.WriteLine("Read {0} bytes from socket. \n Data : {1}",
content.Length, content);
// Echo the data back to the client.
Send(handler, content);
}
else
{
// Not all data received. Get more.
handler.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0,
new AsyncCallback(ReadCallback), state);
}
}
}

private static void Send(Socket handler, String data)
{
// Convert the string data to byte data using ASCII encoding.
byte[] byteData = Encoding.ASCII.GetBytes(data);

// Begin sending the data to the remote device.
handler.BeginSend(byteData, 0, byteData.Length, 0,
new AsyncCallback(SendCallback), handler);
}

private static void SendCallback(IAsyncResult ar)
{
try
{
// Retrieve the socket from the state object.
Socket handler = (Socket)ar.AsyncState;

// Complete sending the data to the remote device.
int bytesSent = handler.EndSend(ar);
Console.WriteLine("Sent {0} bytes to client.", bytesSent);

handler.Shutdown(SocketShutdown.Both);
handler.Close();

}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}


public static int Main(String[] args)
{
StartListening();
return 0;
}
}

How that code was?
Fine!

But always keep in mind here system is using default thread pool which by default handle maximum 25 thread, which may gives problem in large application, but for small application it’s fine. Also it’s using internal multi-threading technology which is comparatively slower than raw threading program. However let’s carry on.

Labels: , , , , , , ,

  1. Blogger baaelSiljan | October 17, 2007 12:32 AM |  

    i have to use :

    IPAddress serverAdd = IPAddress.Parse("127.0.0.1");

    instead of:

    IPAddress serverAdd = Dns.Resolve("localhost");

    I dont know why Dns.Resolve don't want to work.

    good articles, cheers

  2. Blogger Suman Biswas | October 28, 2007 10:59 PM |  

    Thank you for your comment, and I'm sorry for late reply.
    Some how I've mistake when codes are copied & paste. The actual code will be:
    IPHostEntry ipHost = Dns.Resolve("localhost");
    IPAddress serverAdd = ipHost.AddressList[0];

    These two line insted of that line:
    //IPAddress serverAdd = IPAddress.Parse("127.0.0.1");
    Thanks for correct me.

    You can use any option, above two line or next line.

  3. Blogger Артур | April 17, 2008 1:30 PM |  

    Hi, I'd like to ask for your expert advice according to xf.server component.

    Did you try it? It seems to be a good solution for high performance servers in .NET

  4. Blogger Suman Biswas | April 19, 2008 5:12 AM |  

    Hi Артур,
    I don't know about XF.Server - it's use and performance and for which purpose it works. Never I've tried it. So for me not possible to comment about it.
    Thanks,
    Suman Biswas

  5. Blogger bijju | May 14, 2008 11:10 PM |  

    I want to Connect multiple clients to
    the server.
    For that I have to lock the Receiving buffer when one client's data is coming or there is another way.
    Thanks in advance.

  6. Blogger newbie | September 29, 2008 1:12 AM |  

    Very nice and interesting! I'm pretty new in C# and i need to know how to make the code with socket, that sending data to some server, the response could be written in Richtextbox. For example, i'm using this asynksocket:

    http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=5331&lngWId=10

    I know how to connect it, but i don't understand how to receive data and put the arrival data in a richtexbox. The code is here:

    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }
    string datarrival;
    AsyncSocket socket = new AsyncSocket();
    private void Form1_Load(object sender, EventArgs e)
    {

    socket.OnConnect += new AsyncSocket.OnConnectEvent(socket_OnConnect);
    socket.OnReceive += new AsyncSocket.OnReceiveEvent(socket_OnReceive);
    socket.OnDisconnect += new AsyncSocket.OnDisconnectEvent(socket_OnDisconnect);


    }

    void socket_OnDisconnect(AsyncSocket sender)
    {
    //throw new Exception("The method or operation is not implemented.");
    }

    void socket_OnReceive(byte[] Data)
    {
    datarrival += Encoding.Default.GetString(Data);
    //throw new Exception("The method or operation is not implemented.");
    }

    void socket_OnConnect(AsyncSocket sender)
    {
    string abc = "&name=" + textBox1.Text + "&insMessage=" + textBox2.Text + "&submit=Enviar";
    string request = "POST /betatester/winsocktest/insMessage.php?action=insMessage HTTP/1.1\r\nAccept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/x-shockwave-flash, */*\r\nhttp://members.lycos.co.uk/betatester/winsocktest/insMessage.php\r\nAccept-Language: es-us\r\nContent-Type: application/x-www-form-urlencoded\r\nAccept-Encoding: gzip, deflate\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; .NET CLR 1.1.4322)\r\nHost: " + "members.lycos.co.uk" + "\r\nContent-Length: " + abc.Length + "\r\nConnection: Keep-Alive\r\n\r\n" + abc + "\r\n\r\n";

    ;
    socket.Send(request);
    //throw new Exception("The method or operation is not implemented.");
    }
    }
    }

    Could you help me and tell me how i can put the data that arrives from the server as a respone put in the textbox or richtextbox?

  7. Blogger Dimon | May 20, 2009 6:15 AM |  

    This post has been removed by the author.

  8. Blogger Dimon | May 20, 2009 6:16 AM |  

    Hello.
    Thank you the article.
    I'm interested why hash code for the socket in client and server are the same in spite of different processes?
    And the second question:

    Data about server connection from tcpview by Russinovich:

    server: 127.0.0.1:5656 Remote address: 0.0.0.0:0 state: Listening

    server: 127.0.0.1:3450 Remote address: *.* state: not available

    what is second state about?

  9. Blogger Suman Biswas | May 20, 2009 8:37 AM |  

    Hi Dimon,
    For 1st: Not clear your question
    2nd: May be Listing.

    Plz express your question more clearly.

    -Suman

  10. Blogger anasanjaria | June 18, 2009 4:17 AM |  

    hello Suman ,

    why have u created state obj ? i actually wont able to undrstd its purpose ...

    regards,
    Anas

  11. OpenID stormbringer281 | November 17, 2009 4:18 AM |  

    Hello Suman,

    Thank you. The article is very interesting.One question: I'm writing a server application which should serve a big number or clients(for example 500). Can it be a problem using default thread pool? The server application will be working on windows 2003 machine, is there a difference between windowsXP/Vista and windows 2003 default thread pools? Queueing client's requests isn't a problem, just requests shouldn't disappear.

    Thanks in advance

  12. Blogger Suman Biswas | November 17, 2009 4:26 AM |  

    Hi,
    For default thread pool I think no difference, because it is .Net framework level features. Thread pool is 25 so far I know.

    For 500 user seems I think it will not problem. But it depends on application type - client activity dependent.

    In past I have seen two application one was getting problem when the client reaches around 3800-4100 user. And another person getting problem when his user reaches around 10,000-12,000 users.

    My advice go to raw thread application (if there has any chances to increases user from 500) then it can handle much user. As my experience with raw thread have not got any problem with more than 1,00,000 users. But default thread pool will give you simple programming.


    Suman

leave a response