Re: [s] Validity of user session

2008-07-05 Thread dusty
Don't you just overwrite the existing session values (that were left behind because the user didn't click exit) when the user returns to the page? You can tell the browser not to cache the page with the http equiv header tags. Milan Milanovic wrote: > > O.K. Could you tell me very session d

Re: [s] Validity of user session

2008-07-03 Thread Milan Milanovic
O.K. Could you tell me very session data is stored ? I need to know this because when user came to one page I fill session object with some values (collections), and when he click "exit" link then I clear session contents, but he may click to some other link (to "exit") and then all objects in ses

Re: [s] Validity of user session

2008-07-02 Thread Laurie Harper
Milan Milanovic wrote: I have an SessionAware-based action class, where I put some variables into session when user came to the page which is backed up with that action class. I'm wondering what is validity of that session object, because I'm not sure if I have possibility to clear user session ?