I want to maintain a list for connected client in on server side using java
Hi ,
I need the help,
Socket incoming=null;
while(true)
{
incoming = s.accept();
if(incoming.isClosed())
{
System.out.println("Disconnected");
}
}
I have to do if client program is terminated then i want to display it on server that this client is not responding.
i.e. I want the updated information of connected client.

