RE: How can I logoff

2001-07-31 Thread djhutchison
I'm using form authentication and used session.invalidate(). This works great but the browser may be cacheing your logoff page, in which case you may get some unexpected results if you logoff and back in more than once. You need to disable the page cacheing. I used the following in the head sectio

RE: How can I logoff

2001-07-20 Thread Marc Padberg
Title: Re: How can I logoff There are a lot of examples - just look up "connection pool" on yahoo   one example is: http://coldjava.hypermart.net/classes/dbpool.htm   If you want a concrete walk through example check out Java Servlets by Karl Moss. (Second Edition - third if it&#

Re: How can I logoff

2001-07-20 Thread Christopher Raber
Title: Re: How can I logoff Using jdbc connections per user is not advisable. You shoukd think in terms of connection pooling. -- Chris Raber, Systems Engineer, AvantGo Inc. v: 248-554-9330, cell: 810-839-3684 http://www.avantgo.com/ Sent wirelessly using AvantGo

RE: How can I logoff

2001-07-19 Thread Blue, Neil
Thank you Chris that works. Now I need to sort out page navigation... Neil -Original Message- From: chris brown [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 10:35 To: [EMAIL PROTECTED] Subject: Re: How can I logoff Try session.invalidate() then send the HTTP status code &quo

RE: How can I logoff

2001-07-19 Thread Blue, Neil
Looking at the headers, the browser keeps sending the authorization info anyway so removing the session does not remove the logon in formation. Neil -Original Message- From: Kaneda K [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 09:42 To: [EMAIL PROTECTED] Subject: Re: How can I logoff

Re: How can I logoff

2001-07-19 Thread chris brown
lt;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 19, 2001 11:15 AM Subject: RE: How can I logoff > Thank you Kaneda, > > It doesn't seem to work. > > Cheers > Neil > > -Original Message- > From: Kaneda K [mailto:[EMAIL PROTECTED]] &

RE: How can I logoff

2001-07-19 Thread Blue, Neil
Thank you Kaneda, It doesn't seem to work. Cheers Neil -Original Message- From: Kaneda K [mailto:[EMAIL PROTECTED]] Sent: 19 July 2001 09:42 To: [EMAIL PROTECTED] Subject: Re: How can I logoff At 15:57 18/07/2001 +0100, you wrote: >Hello, > >I am using the JDBC sercu

Re: How can I logoff

2001-07-19 Thread Kaneda K
At 15:57 18/07/2001 +0100, you wrote: >Hello, > >I am using the JDBC sercurity on tomcat 3.3. I am able to logon (via basic >authentication) to view a secured .jsp page. however I can not see how a >user can logoff again so that a new user can logon. Please could someone >point me in the right dir