How can I get the value for the Session Identifier (i.e. JSESSIONID) from a JSP-Page?
Created May 4, 2012
Jorge Jordão Use session.getId().
<HTML> <BODY> Session id: <%= session.getId() %> </BODY> </HTML>