Yves Vindevogel schrieb:
Hello,
> Do you know where I set it in Tomcat 5 ??
No sorry, i just know how to adjust the session livetime.
If you make your cookies yourself you can use this:
javax.servlet.http.Cookie sessionCookie = new
javax.servlet.http.Cookie("JSESSIONID",mySession.getId());
sessionCookie.setPath("/");
response.addCookie(sessionCookie);
This should also override any JSESSIONID Cookies.
HTH
Christoph
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]