Re: A Client needs to know who is the caller.
Posted By:
Simon_Ablett
Posted On:
Thursday, November 6, 2003 06:34 AM
You could call getInetAddress on your socket object. This will give you details of the remote connection but it might not correlate to the true address of the originator (for example, if they access through a firewall I think it will return the wall's address although I might be wrong about this). Have a play about with it. You could also use getRemoteSocketAddress.
Regards.