aspose file tools
The moose likes Servlets and the fly likes what is session expunging?was asked this question in an interview? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "what is session expunging?was asked this question in an interview?" Watch "what is session expunging?was asked this question in an interview?" New topic
Author

what is session expunging?was asked this question in an interview?

senthil sen
Ranch Hand

Joined: Oct 10, 2002
Posts: 182
how would we avoid session from being expunged?
i was asked this question in an interview?
Dominic Paquette
Ranch Hand

Joined: Dec 13, 2002
Posts: 64
I know 2 ways:
in code
session.setMaxInactiveInterval(-1);
or in the web.xml
<sesssion-config>
<session-timeout>-1</session-timeout>
</session-config>

Dominic
senthil sen
Ranch Hand

Joined: Oct 10, 2002
Posts: 182
thanks for ur reply,but i wanna to know the theory and logic of the concept session expunged??that word is new to me.,,
Dominic Paquette
Ranch Hand

Joined: Dec 13, 2002
Posts: 64
I think expunging a session means invalidating a session. Either it timesout or you can explicitlly invalidate it using HttpSession.invalidate();
Hope this helps
Dominic
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: what is session expunging?was asked this question in an interview?
 
Similar Threads
Interviw Q: Java Message Bean
question on session
Question on Servlets
Can we maintain state with a stateless session bean
Can I declare a variable inside Jsp_init()