freeing resources

2001-10-03 Thread Anish Acharya
Title: RE: Unable to get Struts working with Tomcat and Apache - NoSuchMethodError (Day 3) Hello everyone. Just a quick question for you. I want to free certain resources and clear certain objects from the session scope when a user ends their respective session. Where is the best place to do

Re: freeing resources

2001-10-03 Thread Peter Alfors
I think you want to look into the HttpSessionBindingListener. Search the archives for this, I believe others have asked pretty much this same question. HTH, Pete Anish Acharya wrote: Hello everyone. Just a quick question for you. I want to free certain resources and clear certain objects from

Re: freeing resources

2001-10-03 Thread Jonathan M Crater
create a logout action. in it you can simply call session.invalidate() on the user's session. this will invalidate the session and remove all attributes bound to it. Anish Acharya wrote: Hello everyone. Just a quick question for you. I want to free certain resources and clear certain