RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Vijay Prabhakar
Title: RE: Custom authentication mechanism in Tomcat? I'm currently doing something similar. I have authentication working as an Interceptor. I based it off of the BaseInterceptor class. I just re-wrote the authenticate() method. I suspect that I will need to rewrite part of the context

RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Randy Layman
Well, the source for Tomcat is open and available, and there is already a class that authenticates against a database (org.apache.tomcat.request.JDBCRealm) that seems like it would probably be a good basis for whatever you are trying to do that it doesn't. To get the source, you can

RE: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Randy Layman
would believe that it was part of the standard. Randy -Original Message- From: Geoff [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 11:08 AM To: [EMAIL PROTECTED] Subject: Re: Custom authentication mechanism in Tomcat? From: "Randy Layman" [EMAIL PROTECT

Re: Custom authentication mechanism in Tomcat?

2001-02-01 Thread Geoff
From: "Randy Layman" [EMAIL PROTECTED] Well, the source for Tomcat is open and available, and there is already a class that authenticates against a database (org.apache.tomcat.request.JDBCRealm) that seems like it would probably be a good basis for whatever you are trying to do that it