AFAIK the session object is implicit to the page, such as request, response etc.
It is part of the spec.
>>> [EMAIL PROTECTED] 03/07/01 01:43am >>>
I'm not sure if this is the correct place to ask this question but is there
a way to turn off the session tracking in the jsp compiling in orion?
Currently, no matter how you set the <session-tracking> tag in the
configuration, when jsps are compiled the following line are ALWAYS there:
HttpSession session;
session = request.getSession(true);
It seems that this will hinder performance in a clustered environment where
only some of the applications require sessions.
Is there a way to turn this off at a page or application level?
Thanks
Jim