Hi,I am pasting my server code. it is just accepting and receiving data from one client and keep connected to that only client. I want to receive data from different client after one another. Below is my server code. Please help me.Server Code:using System;
using System.IO;
using System.Text;
using System.Net;
using System.Net.Sockets;
public class serv
{
public static void Main()
{
try
{
IPAddress ipAd = IPAddress.Parse("115.167.97.145");
// use local m/c IP address, and
// use the same in the client
while (true)
{
/* Initializes the Listener */
TcpListener myList = new TcpListener(ipAd, 1063);
/* Start Listeneting at the specified port */
myList.Start();
Console.WriteLine("\nListening Port of The Server is 1063...");
Console.WriteLine("Local Connection:" + myList.LocalEndpoint);
Console.WriteLine("Waiting for a connection.....");
Socket s = myList.AcceptSocket();
Console.WriteLine("Remote Connection " + s.RemoteEndPoint);
byte[] b = new byte[225];
int k = s.Receive(b);
Console.WriteLine("Recieving Data from Client...");
for (int i = 0; i < k; i++)
Console.Write(Convert.ToChar(b[i]));
ASCIIEncoding asen = new ASCIIEncoding();
s.Send(asen.GetBytes("The string was recieved by the server." + "\nStream Acknowledged\n\n"));
//s.Send(asen.GetBytes("\nStream Acknowledged"));
Console.WriteLine("\nAcknowledgement has been sent to the Client\n");
/* clean up */
s.Close();
myList.Stop();
}
}
catch (Exception e)
{
Console.WriteLine("Error..... " + e.StackTrace);
}
}
}