Re: Single Login Authentication with Tomcat

2003-09-23 Thread Adam Hardy
I believe somewhere on java.sun.com I saw an article about setting up JAAS as a tomcat realm to use NT authorisation. Good luck, Adam On 09/23/2003 07:29 AM Peter Harrison wrote: I was wondering it anyone knows how to do NT based one login authentication with web applications. I was hoping

Re: Single Login Authentication with Tomcat

2003-09-23 Thread Frode E. Moe
On Tue, Sep 23, 2003 at 17:29:03 +1200, Peter Harrison wrote: I was wondering it anyone knows how to do NT based one login authentication with web applications. I was hoping there is some way a client can be authenticated based on their system login. Obviously there would have to be a

Re: Single Login Authentication with Tomcat

2003-09-23 Thread Christopher Williams
I believe somewhere on java.sun.com I saw an article about setting up JAAS as a tomcat realm to use NT authorisation. There's a big problem with JAAS and the NTLoginModule: it gives you the details of the currently logged on user. For a web app, this will be the user under which Tomcat is

Re: Single Login Authentication with Tomcat

2003-09-23 Thread Mario Ivankovits
There are two solutions: 1. Use JNDI realm to talk to Active Directory. 2. Collect credentials yourself and use native code to call the WinAPI function LogonUser. I have written a centralized authentication service. One of the modules that I created to authenticate users against a Windows

Single Login Authentication with Tomcat

2003-09-22 Thread Peter Harrison
I was wondering it anyone knows how to do NT based one login authentication with web applications. I was hoping there is some way a client can be authenticated based on their system login. Obviously there would have to be a common authentication service like LDAP or Active Directory involved.