Hi,
I've got a question regarding the following scenario:
ServerObject and ClientObject are talking to each other by invoking some
methods on each other's references.
Client side:
ServerObjectRef.doSomeServerStuff(); // part of the API specification
Server side:
ClientObjectRef.doSomeClientStuff(); // part of the API specificatio
How can server obtain client object's reference (or any other specific
data identifying this particular client - sessionID?) so it can verify
it is talking to right (trusted) client and not a spoofer? What I need
is some low level stuff as I cannot modify already specified API to pass
identifiers:(
I suspect it could be done via ****tableInterceptors but they're bloody
complex:(
Has anyone a code snippet or a quick help regarding this?
I'd be very grateful.
Thanks in advance
Przemek