Show TOC Start of Content Area

Background documentation AS Java Session Identifier Locate the document in its SAP Library structure

The general form of the AS Java session identifier is similar to the ABAP session identifier described in the previous section (ABAP Session Identifier). As opposed to the ABAP identifier, the contents of the JSESSIONID cookie are not evaluated to find the correct server name.

Session ID as Cookie

This graphic is explained in the accompanying text 

Cookie: JSESSIONID=<sap-j2ee-sid>

Session ID in URL

When specified in the URL instead of a cookie, the AS Java session ID is included as a standard semicolon-separated URI parameter (see RFC 2396: Section 3.3 “Path Component”). The name of the URI-parameter is “jsessionid”.

This graphic is explained in the accompanying text

<uri-path-segment> ;jsessionid=<sap-j2ee-sid> 

ExampleExample

/sap/j2ee;jsessionid=<sap-j2ee-sid>/foo/bar

 

End of Content Area