RMI
Hi,
I am developing a distributed application in which remote object should have capability to identify the clients.
Ex : Consider the following sequence in which two clients C1 & C2 access the remote object.
1. C1 access remote object
2. C2 access remote object
3. C1 access remote object
Remote object should have knowledge about the clients.
It should know it got accessed by two clients.
i.e.
Client1 access 2
Client2 access 1
How can I do this ?

