Re: Custom Authenticator

2016-06-04 Thread Thomas Meyer
Am Mittwoch, den 01.06.2016, 09:29 -0400 schrieb Christopher Schultz: > Thomas, > > On 6/1/16 7:15 AM, Thomas Meyer wrote: > > > > Hi, > > > > How do I get a custom mapping set in  > > ContextConfig.setCustomAuthenticators? (  > > https://tomcat.apache.org/tomcat-8.0-doc/api/org/apache/catalina/

Re: Custom Authenticator

2016-06-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thomas, On 6/1/16 7:15 AM, Thomas Meyer wrote: > Hi, > > How do I get a custom mapping set in > ContextConfig.setCustomAuthenticators? ( > https://tomcat.apache.org/tomcat-8.0-doc/api/org/apache/catalina/start up/ContextConfig.html#setCustomAuthent

Re: Custom Authenticator

2006-02-04 Thread Arash Bijanzadeh
On 2/3/06, Stefan Baramov <[EMAIL PROTECTED]> wrote: > > You can also implement custom LoginModule according to the JAAS > specification. JAAS tutorial and LoginModule example is included in the > JDK documentation. I see. But I want to have access to the users Http Session in the login time. I

RE: Custom Authenticator

2006-02-03 Thread Stefan Baramov
You can also implement custom LoginModule according to the JAAS specification. JAAS tutorial and LoginModule example is included in the JDK documentation. | -Original Message- | From: Arash Bijanzadeh [mailto:[EMAIL PROTECTED] | Sent: Thursday, February 02, 2006 7:21 AM | To: users@tomcat

Re: Custom Authenticator

2006-02-02 Thread David Smith
Have You thought about a request filter? All it has to do is watch for authenticated sessions that are missing some critical session attributes. Fill in the missing info as needed. -David Arash Bijanzadeh wrote: Hi, I need to implement my custom authenticator to do some extra comfig i user se