Discussion:
how to get Client Ip address?
(too old to reply)
Muneeb kiani
2012-01-22 06:38:10 UTC
Permalink
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.?
f***@gmail.com
2012-05-08 08:10:10 UTC
Permalink
Post by 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.?
csocket.getRemoteSocketAddress().toString();

Loading...