how to get Client Ip address?

  • Thread starter Thread starter Muneeb kiani
  • Start date Start date
M

Muneeb kiani

I want to know that how can we know the IP address of client on server
side in socket (java). Suppose there is a server "S" and 2 clients "A"
and "B". Client A send me(server) some info, and Client B send
me(server) some other info. I have to store that info coming from A
and B in database in different tables. How can I Differentiate between
client A and B request.?
 
I want to know that how can we know the IP address of client on server
side in socket (java). Suppose there is a server "S" and 2 clients "A"
and "B". Client A send me(server) some info, and Client B send
me(server) some other info. I have to store that info coming from A
and B in database in different tables. How can I Differentiate between
client A and B request.?

csocket.getRemoteSocketAddress().toString();
 
Back
Top