you can use encodeURL( string ) and encodeRedirectURL ( string ), where the string is the url you want to specify. These will append the jsessionid as a parameter to the end of your request.
if you are using JSP, it would look something like this:
<a href="<%= response.encodeURL ("/linkToAnotherPage.jsp") %>">
thanks
|