|
I could be wrong here, but off the top of my head I
seem to recall that you only see url rewriting in Tomcat if you have disabled
cookies. Otherwise all session activity uses cookies. You may want
to take a look in the server.xml in one of the context entries for the attribute
cookies="false". If you are using auto deployment there is usually a
<DefaultContext/> element that specifies a set of global attributes
to use for all automatically deployed webapps. Otherwise it would be in
the <Context></Context> entry that was manually entered for your
webapp.
It's somewhat easier than programmatically manipulating
your url's.
Greg
Nieman
Does anybody know
if there is a way to "turn off" URL Rewriting in Tomcat for session ID's?
i.e. So that
;jsessionid=blah doesn't get appended to the URL.
Thanks....
|