Re: How to prevent the login information cached

2005-10-27 Thread info3853 Bush
Hi, Michael, What you suggest works fine. In this way, the URL is changed from login.do to login.jsp. And in jsp, all user information has been reinitialized so user has to provide login information. Thanks, Bush --- Michael Jouravlev <[EMAIL PROTECTED]> wrote: > On 10/26/05, info3853 Bush <[E

Re: [OT] Re: How to prevent the login information cached

2005-10-27 Thread info3853 Bush
g.findForward( "success" ); > } //end execute > } //end LogoffAction > - Original Message - > From: "info3853 Bush" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > > Sent: Wednesday, October 26, 2005 1:13 PM > S

Re: [OT] Re: How to prevent the login information cached

2005-10-26 Thread Hotmail
actionMapping.findForward( "success" ); } //end execute } //end LogoffAction - Original Message - From: "info3853 Bush" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Wednesday, October 26, 2005 1:13 PM Subject: Re: [OT] Re: How to prevent the login informat

Re: How to prevent the login information cached

2005-10-26 Thread Michael Jouravlev
On 10/26/05, info3853 Bush <[EMAIL PROTECTED]> wrote: > I had a web application based on struts framework. Recently, I found that > after you logout, you use the browser back button back to the login.do > page, the page shows the Page Time Out, however, if you click the refresh > button, the page

Re: How to prevent the login information cached

2005-10-26 Thread Laurie Harper
info3853 Bush wrote: I had a web application based on struts framework. Recently, I found that after you logout, you use the browser back button back to the login.do page, the page shows the Page Time Out, however, if you click the refresh button, the page automatically login to the application

Re: [OT] Re: How to prevent the login information cached

2005-10-26 Thread info3853 Bush
In my logout method, we use the session.invalidate(); method and redirect the page to login page again. Dave Newton <[EMAIL PROTECTED]> wrote:info3853 Bush wrote: >Anyone has idea to handle this situation? > > Sounds like your logout method is broken. Dave --

[OT] Re: How to prevent the login information cached

2005-10-26 Thread Dave Newton
info3853 Bush wrote: Anyone has idea to handle this situation? Sounds like your logout method is broken. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How to prevent the login information cached

2005-10-26 Thread info3853 Bush
I had a web application based on struts framework. Recently, I found that after you logout, you use the browser back button back to the login.do page, the page shows the Page Time Out, however, if you click the refresh button, the page automatically login to the application without ask you any u