Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrieve current Windows user in Java EE web application for Single Sign On purposes

I am doing a Java EE web application that requires Single Sign On with Active Directory.

The application will no longer prompt for a username and password. The authentication process would require retrieval of the current Windows logged on user. Once I have the user, I need to query Active Directory to get the roles for that logged on user. I am aware that this will exclude non-Windows users, but this is an internal application and all clients are using Windows.

I have to implement the SSO in 2 Java EE web applications. 1 application is runnning on GlassFish v2.1.1 (JDK 1.6) and the other is running on Tomcat (JDK 1.5).

Basically my main problem is how to retrieve the current Windows logged on user.

I've already come across JAAS and Kerberos. Kindly correct me if I'm wrong. My understanding is that these are authentication protocol and they do not have the feature to retrieve the current windows logged on user.

I've already tried the following but I am always getting null or Server's own username.

  1. System.getProperty("user.name");
  2. new com.sun.security.auth.module.NTSystem().getName();
  3. request.getUserPrincipal().getName();
  4. System.getenv("USERNAME");
  5. JCIF NTLM HTTP Authentication in Tomcat
  6. LoginContext

I am open to any suggestions.

like image 710
Amy Avatar asked Jan 04 '11 02:01

Amy


2 Answers

WAFFLE is a great solution for this. It does not need Kerberos configuration.

like image 137
Alex Avatar answered Oct 06 '22 01:10

Alex


SPNEGO is an open source project that provides a servlet filter that provies Integrated Windows Authentication.

if your organization uses java based web/application servers, and you prefer Kerberos/SPNEGO instead of NTLM as the authentication protocol, and you would rather have a Java Servlet Filter (JSR-53) based implementation instead of a container specific authentication module (JSR-196), and you want SSO (no username/password prompt), then this project may be of some interest to you.

It has instructions for configuring both Tomcat and Glassfish.

like image 27
Mads Hansen Avatar answered Oct 05 '22 23:10

Mads Hansen