RE: Can session time be modified at runtime?

2004-09-10 Thread Shapira, Yoav
t) as needed. Yoav Shapira Millennium Research Informatics >-Original Message- >From: Arun Prasad R [mailto:[EMAIL PROTECTED] >Sent: Friday, September 10, 2004 7:05 AM >To: Tomcat Users List >Subject: Re: Can session time be modified at runtime? > >hi > >if i don

Re: Can session time be modified at runtime?

2004-09-10 Thread Arun Prasad R
hi if i don't control in application, so i can not do session.setMaxInactiveInterval(600); but for that application i experience frequent timeout. is there any other way, so that i need not to restart tomcat arun On Fri, 10 Sep 2004 11:59:39 +0100, Mike Fowler <[EMAIL PROTECTED]> wrote: > You

Re: Can session time be modified at runtime?

2004-09-10 Thread Mike Fowler
You could use the session instance method setMaxInactiveInterval which takes a single int paramter which is the maximum time in seconds between client requests before invalidation. For example, for ten minute timeout: session.setMaxInactiveInterval(600); -Mike Fowler "I could be a genius if I ju

Re: Can session time be modified at runtime?

2004-09-10 Thread Tim Funk
The session timeout can be changed at runtime (sort of). If you change web.xml - you would need to restart your webapp. This would cause a brief outage while sessions are saved to ???. (Unless your using clustering) If you really need this changed on the fly, this might be able to be changed vi

Can session time be modified at runtime?

2004-09-09 Thread Arun Prasad R
hi in web.xml the following comment has been given 30 after changing session-timeout will it be effective for sessions created thereafter? anyone clarify arun - To unsubscribe, e-mail: [EMAIL PROTECTED