How todestroy a session manually???

2004-10-14 Thread John MccLain
I have a session listener that clears out some static data on sessionDestroy. Is there a way for a logout button in a .jsp view to call some kind of destroy session function so that a sessionDestroyed(..) handler in a session listener gets called? John McClain Senior Software Engineer TCS

Re: How todestroy a session manually???

2004-10-14 Thread Rick Wong
Yes. session.invalidate(). What is cool is that it even works with single-sign-on! Thanks to the Tomcat team! -- Rick John MccLain wrote: I have a session listener that clears out some static data on sessionDestroy. Is there a way for a logout button in a .jsp view to call some kind of