vote up 5 vote down star
6

Hi!

I want to develop an Java application that can detect the user logged on a Window Domain. These credentials are going to be used to logging on the Java application running on Tomcat.

How can I do this? I want to know the remote user accessing my web app. This user is logged on a active directory

Thanks!

flag

How is this different from stackoverflow.com/questions/725124/…? – mmyers Apr 7 at 15:16
Maybe I asked the question in a wrong way. The previous solutions doesn't work on a Java Web App. – VansFannel Apr 7 at 15:18
Perhaps this is what you're looking for? stackoverflow.com/questions/439120/… – Steve Reed Apr 7 at 15:56

5 Answers

vote up 2 vote down check

This is my solution:

Put jcifs-1.2.7.jar on [TOMCAT_HOME]/common/lib directory.

Modify application's web.xml adding the followin text to section webapp:

<filter>
    <filter-name>NtlmHttpFilter</filter-name>
    <filter-class>jcifs.http.NtlmHttpFilter</filter-class>
    <init-param>
        <param-name>jcifs.http.domainController</param-name>
        <param-value>xx.xx.xx.xxx</param-value>  --> Domain Controller IP
    </init-param>
    <init-param>
        <param-name>jcifs.util.loglevel</param-name>
        <param-value>2</param-value>
    </init-param>
  </filter>
  <filter-mapping>
       <filter-name>NtlmHttpFilter</filter-name>
       <url-pattern>/*</url-pattern>
  </filter-mapping>

And the you can get the remote user using request.getRemoteUser() whithout prompt.

See you.

link|flag
vote up 1 vote down

Jcifs liabrary will be surely of your help. This library can be used for performing NTLM authentication.

link|flag
vote up 0 vote down

I recall using mod_ntlm for apache did the trick for me, but that was few years ago, so I don't know what had changed since.

link|flag
vote up 1 vote down

In general, you can hook into the local authorization service using Java Authentication and Authorization Service. That might do what you want.

That said, are you sure this is the right way to go? What do you want to accomplish? Are you looking for a single-signon solution for the webapp?

Then this: http://stackoverflow.com/questions/439120/how-to-configure-tomcat-to-use-windows-ntlm-authentication might be what you are looking for, as proposed by Steve Read in the comment above.

link|flag
I want to know the remote user accessing my web app. This user is logged on a active directory. – VansFannel Apr 8 at 8:17
vote up 0 vote down

+1 Though question!

There is an answer to this question here (still on stack overflow) when using IIS. So I guess it is possible on a servlet container to fool the client into presenting some kind of signed token as proof of authentication. Then I guess you will need some windows magic to validate the thing.

Is there any "Integrated Windows Authentication" specification somewhere?. Did anybody implemented this? JCIFS, Samba?.

I would use tcpmon to see the interaction between the browser and a IIS if the recipe given above works. I suspect It is fairly complicated though. If there is not some crypto involved I would be very disappointed.

Tomcat has already support for LDAP authentication sources (see here). Maybe extending this and add a custom Realm implementation.

link|flag
You just linked him to his own question. ;) – mmyers Apr 7 at 16:02
"Though" or "tough"? ;-) – Arjan van Bentem Apr 22 at 13:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.