Re: How to stop Session Tracking, or stop extraction of ";jsessionid=XXX" from requested URL

2005-05-04 Thread Tim Funk
The easiest thing to do is to change all your jsp's to have the following code. <[EMAIL PROTECTED] session='false'%> Then unless you have code specifically asking for a session - no sessions should be created. A simplier but uglier kludge is to create a Filter which overrides getSession and alwa

Re: How to stop Session Tracking, or stop extraction of ";jsessionid=XXX" from requested URL

2005-05-05 Thread Jedidiah Northridge
On 5/4/05, Tim Funk <[EMAIL PROTECTED]> wrote: > The easiest thing to do is to change all your jsp's to have the following > code. > <[EMAIL PROTECTED] session='false'%> Hi Tim, Thanks for your response. My understanding of the @page session='false' directive is that it is useful because, under