Version 8.3.3
 —  Special Development Topics  —

Session IDs

Each session - session or subsession - holds an ID.

You can access the IDs from your adapter in the following way:

public class TestAdapter 
    extends com.softwareag.cis.server.Adapter
{
    ...
    ...
    public void xxx()
    {
        ...
        String sessionId = this.m_interactionProcess.getSessionId();
        String subsessionId = this.m_interactionProcess.getProcessId();
        ...
    }
    ...
    ...
}

Top of page