I have built a server adapter (in .NET using the ARI setup), which publishes updates for a bunch of items (one item for each session id connected). This should basically simulate unique messages for each connected client (from the same adapter). The session id is stored when the metadata adapter reports that a new session is created (NotifyNewSession called). I am trying to figure out how to subscribe to that item from the .NET client - basically I need the session id value on the client. I would assume that would be possible, but I cannot find the session id anywhere - it is not parsed in when OnSessionStarted is called in IConnectionListener and it is not available on the LSClient object. Is there any way to retrieve this on the client? (or some other way for the client to identify him self?)