Re: Logout with basic autorization

2001-11-15 Thread kevin ritter
autorization On Wed, 14 Nov 2001, kevin ritter wrote: Date: Wed, 14 Nov 2001 18:41:01 -0600 From: kevin ritter [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], kevin ritter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Logout with basic autorization Can

Re: Logout with basic autorization

2001-11-15 Thread Marko Asplund
On Wed, 14 Nov 2001, Craig R. McClanahan wrote: ... As far as I know, this is correct. The problem is that when you are using BASIC authentication, the browser sends the credentials on every request, and I don't know of any way to tell it to stop doing so. there's no way of reliably

Re: Logout with basic autorization

2001-11-15 Thread Marko Asplund
On Thu, 15 Nov 2001, kevin ritter wrote: Thank you for your quick response; however, I have a follow on question regarding BASIC authentication and WebDAV. If I implement FORM based authentication will I still be able to drag and drop folders using Slide's WebDAV capabilities and perform

Re: Logout with basic autorization

2001-11-14 Thread kevin ritter
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 19, 2001 8:58 PM Subject: Re: Logout with basic autorization The only way to logout with basic authentication is to close the Web browser. Otherwise, you may want to do form-based authentication. Jon - Original Message

Re: Logout with basic autorization

2001-11-14 Thread Tom Drake
I think your servlet or jsp can simply call session.invalidate(). - Original Message - From: kevin ritter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 4:41 PM Subject: Re: Logout with basic autorization | Can anyone one verify if this is really the case

Re: Logout with basic autorization

2001-11-14 Thread kevin ritter
- Original Message - From: Tom Drake [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED]; kevin ritter [EMAIL PROTECTED] Sent: Wednesday, November 14, 2001 7:26 PM Subject: Re: Logout with basic autorization I think your servlet or jsp can simply call session.invalidate

Re: Logout with basic autorization

2001-11-14 Thread Craig R. McClanahan
On Wed, 14 Nov 2001, kevin ritter wrote: Date: Wed, 14 Nov 2001 18:41:01 -0600 From: kevin ritter [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], kevin ritter [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Logout with basic autorization Can anyone one verify

Re: Logout with basic autorization

2001-11-14 Thread Fredrik Westermarck
kevin ritter wrote: Can anyone one verify if this is really the case, that is, to logout with BASIC authentication you have to close the browser window? This seems to be a little goofy. Are there any work arounds? The troubles of revoking user credentials when using HTTP-authentication is

Logout with basic autorization

2001-09-19 Thread Oleksandr Fedorenko
Hi. How to do really logout using basic authorization ? I mean to get authorization prompt again by using tomcat engine ? , i.e. tomcat should care about it . To send smth. in response ? If yes, so what to send ? Thanks. Alex.

Re: Logout with basic autorization

2001-09-19 Thread Dmitri Colebatch
call session.invalidate() - should do the trick. cheers dim On Wed, 19 Sep 2001, Oleksandr Fedorenko wrote: Hi. How to do really logout using basic authorization ? I mean to get authorization prompt again by using tomcat engine ? , i.e. tomcat should care about it . To send smth. in

Re: Logout with basic autorization

2001-09-19 Thread P.Miller
Hi Oleksandr, you can 'logout' with session.invalidate(). You have to login again afterwards. Hth Peter Oleksandr Fedorenko wrote: Hi. How to do really logout using basic authorization ? I mean to get authorization prompt again by using tomcat engine ? , i.e. tomcat should care

Re: Logout with basic autorization

2001-09-19 Thread Oleksandr Fedorenko
P.Miller wrote: Hi Oleksandr, you can 'logout' with session.invalidate(). You have to login again afterwards. I do it exactly. But Browser already contains information for authentication, and when I want to access protected page ( I want to get auth prompt ) , it pass it by. Hth

Re: Logout with basic autorization

2001-09-19 Thread Jonathan Eric Miller
: Logout with basic autorization P.Miller wrote: Hi Oleksandr, you can 'logout' with session.invalidate(). You have to login again afterwards. I do it exactly. But Browser already contains information for authentication, and when I want to access protected page ( I want to get auth