Re: Capturing User Passwords

2005-09-29 Thread [EMAIL PROTECTED]
Thanks Larry - that's worked for me!-Original Message-From: Larry Meadors [mailto: [EMAIL PROTECTED]] Sent: 29 September 2005 04:01To: Tomcat Users List Subject: Re: Capturing User PasswordsHere is the code (this is for tomcat 4.1.x): if(log.isDebugEnabled()){ Principal principal =

RE: Capturing User Passwords

2005-09-29 Thread Bovy, Stephen J
[mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 4:43 PM To: Tomcat Users List Subject: Re: Capturing User Passwords You could modify the FormAuthenticator class and have it cache the password. I believe it's in the org.apache.catalina.authenticator package of the tomcat source. I did

RE: Capturing User Passwords

2005-09-29 Thread Perry, Greg \(UK - London\)
: Subject: RE: Capturing User Passwords Hi Greg , thanks for the link. Your download does not have any source, ( can you share it ?? ) Stephen Bovy Computer Associates 6100 Center Drive Suite 700

RE: Capturing User Passwords

2005-09-29 Thread Bovy, Stephen J
:58 AM To: Tomcat Users List Subject: RE: Capturing User Passwords Hi Stephen, Aaron posted the link (Thanks Aaron!) - so I guess your request is best directed to him. Cheers, Greg -Original Message- From: Bovy, Stephen J [mailto:[EMAIL PROTECTED] Sent: Thu

Capturing User Passwords

2005-09-28 Thread [EMAIL PROTECTED]
I am trying to find a way of capturing a user's password so that I can have the user login to one of my web applications (which acts as a client), and pass it to a second application (which acts as the server). I know that I can retrieve the user from the ServletRequest using

Re: Capturing User Passwords

2005-09-28 Thread Giuseppe Briotti
== Date: Wed, 28 Sep 2005 14:29:04 +0100 From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Subject: Capturing User Passwords == I am trying to find a way of capturing a user's password so that I can have

RE: Capturing User Passwords

2005-09-28 Thread Perry, Greg \(UK - London\)
:[EMAIL PROTECTED] Sent: 28 September 2005 14:45 To: Tomcat Users List Subject: Re: Capturing User Passwords == Date: Wed, 28 Sep 2005 14:29:04 +0100 From: [EMAIL PROTECTED] [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Subject: Capturing User Passwords

Re: Capturing User Passwords

2005-09-28 Thread Aaron Loucks
to explicitly supply the password in the call to my second application. Again, any help would be greatly appreciated. -Original Message- From: Giuseppe Briotti [mailto:[EMAIL PROTECTED] Sent: 28 September 2005 14:45 To: Tomcat Users List Subject: Re: Capturing User Passwords

Re: Capturing User Passwords

2005-09-28 Thread Larry Meadors
Here is the code (this is for tomcat 4.1.x): if(log.isDebugEnabled()){ Principal principal = req.getUserPrincipal(); PropertyDescriptor[] pds; pds = PropertyUtils.getPropertyDescriptors(principal.getClass()); for(int i = 0; i pds.length; i++){