Re: Custom Authentication in Tomcat 8.5.4 using JDK 1.8.0_92?

2016-08-28 Thread Doug Gschwind
Hi Mark, Very good, thank you for that direction. Both approaches you suggest seem appropriate, but I was unable to find any guide that describes how to provide/implement a JASPIC module, let alone that within Tomcat. I am hoping a custom Authenticator via extending AuthenticatorBase (FormAuthenti

Re: Custom Authentication in Tomcat 8.5.4 using JDK 1.8.0_92?

2016-08-26 Thread Mark Thomas
On 26/08/2016 06:54, Doug Gschwind wrote: > Hello, > In my research today on the topic, this appears to be much more difficult > than I would expect in Tomcat 8.5, so I can only conclude I am missing > something. Here are the two potential solutions I have found : > > 1) Provide our own impleme

Custom Authentication in Tomcat 8.5.4 using JDK 1.8.0_92?

2016-08-25 Thread Doug Gschwind
to do custom authentication. The AbstractAuthenticator instance is presented with the login credentials of the end user attempting to login, as well as the HttpServletRequest instance itself so that any and all HTTP request state such as parameters can also be interrogated if necessary. This is the

Implementing custom authentication on Tomcat 6.x

2009-10-20 Thread Johan Thorselius
I have an issue with finding a proper custom authentication mechanism with Tomcat (6.x). Currently I have a Tomcat 6.0.20 setup with the standard org.apache.catalina.realm.JAASRealm. The http-header is populated on an outside authentication server so the user is considered already authenticated

Re: Custom Authentication

2008-07-09 Thread Tim Williams
On Wed, Jul 9, 2008 at 9:20 AM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: >> From: Tim Williams [mailto:[EMAIL PROTECTED] >> Subject: Custom Authentication >> >> The docs[2] suggests registering it by adding the entry >> to the Authenticators.propertie

RE: Custom Authentication

2008-07-09 Thread Caldarale, Charles R
> From: Tim Williams [mailto:[EMAIL PROTECTED] > Subject: Custom Authentication > > The docs[2] suggests registering it by adding the entry > to the Authenticators.properties file, which, I gather, > requires unjaring catalina.jar. Put your authenticator config in: ${CATALINA_HO

Custom Authentication

2008-07-09 Thread Tim Williams
I'm wanting to register a custom authenticator to send out and handle a custom WWW-Authenticate header (similar to what's described here[1]). I gather that I can implement AuthenticatorBase for this purpose but I'm curious about registering it. The docs[2] suggests registering it by adding the ent

RE: Custom Authentication

2006-11-22 Thread Elliott Murray
From: Ravi116 [mailto:[EMAIL PROTECTED] Sent: 21 November 2006 21:39 To: users@tomcat.apache.org Subject: Re: Custom Authentication Marcus, Thanks for your response. Let me elaborate on 1st question - Need to authenticate users either using NTLM or SSL based on whether is user in domain or not. C

Re: Custom Authentication

2006-11-21 Thread Ravi116
> > On 11/20/06, Ravi116 <[EMAIL PROTECTED]> wrote: >> >> >> 1. Can we implement NTLM or SSL authentication based on some HTTP header >> value ? >> 2. How do we implement an authorization model with single-sign on ? >> Realms >> ? >> >>