I learned that Server application makes a ServerSocket in a specific port,
ServerSocket ServerSock=new ServerSocket(9000);
and client makes a socket connection to the server application,
Socket sock=new Socket("127.0.0.1","9000");
So client knows the Ip address and port of the server, I'm confused how and when the server gets knowledge about the client. Please help.
Thanx in advance !!!