[Fwd: Session expiration...]

2001-02-08 Thread Merwin Yap





Hi! I want to ask about sessions in tomcat. How do you change the
elapsed time for the session to expire.

Thanks!

Merwin





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


Re: [Fwd: Session expiration...]

2001-02-08 Thread Kief Morris

Merwin Yap typed the following on 04:27 PM 2/3/2001 +0800
Hi! I want to ask about sessions in tomcat. How do you change the
elapsed time for the session to expire.

In your web.xml put:

session-config
session-timeout30/session-timeout
/session-config

Change 30 to the number of minutes that must elapse before the
server will expire an inactive session.

Kief


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: [Fwd: Session expiration...]

2001-02-08 Thread Doug Ferguson

I'd like to know too!!!

Merwin Yap wrote:

   

 Subject: Session expiration...
 Date: Sat, 03 Feb 2001 16:18:38 +0800
 From: Merwin Yap [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]

 Hi! I want to ask about sessions in tomcat. How do you change the
 elapsed time for the session to expire.

 Thanks!

 Merwin

   
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, email: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: [Fwd: Session expiration...]

2001-02-08 Thread John Clark L. Naldoza

Merwin Yap wrote:
 
   
 
 Subject: Session expiration...
 Date: Sat, 03 Feb 2001 16:18:38 +0800
 From: Merwin Yap [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 
 Hi! I want to ask about sessions in tomcat. How do you change the
 elapsed time for the session to expire.
 
 Thanks!
 
 Merwin
 

There are two ways that I know of, runtime and init time.

During runtime you can change the session "timeout" by getting a session
object from you request and using the setMaxInactiveInterval() method
with the proper parameters.

Check the HttpSession Interface  under the javax.servlet.http package.

During Init time or initialization, it's just a couple of XML statements
in your web.xml I believe you can find the definitions under the web.dtd
file... 

Hope that helps.

Cheers,


John Clark

-- 
 /) John Clark Naldoza y Lopez   (\
/ )Software Design Engineer II   ( \
  _( (__  Web-Application Development_) )_
 (((\ \  /_Cable Modem Network Management System _\  / /)))
 ( \_/ / NEC Telecom Software Phils., Inc.  \ \_/ )
  \   /  \   /
   \_/  phone: (+63 32) 233-9142 loc. 3112\_/
   /   /  cellphone: (+63 919) 241-4612 \   \
  /   / email: [EMAIL PROTECTED]\   \

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




Re: [Fwd: Session expiration...]

2001-02-08 Thread Craig R. McClanahan

Kief Morris wrote:

 Merwin Yap typed the following on 04:27 PM 2/3/2001 +0800
 Hi! I want to ask about sessions in tomcat. How do you change the
 elapsed time for the session to expire.

 In your web.xml put:

 session-config
 session-timeout30/session-timeout
 /session-config

 Change 30 to the number of minutes that must elapse before the
 server will expire an inactive session.


This sets the global default for new sessions created within this webapp.

You can also call session.setMaxInactiveInterval() to change the timeout
for a particular session, at any time.  Note that the value here is in
seconds, rather than minutes.


 Kief


Craig McClanahan



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]