up vote 2 down vote favorite
4
share [g+] share [fb]

Possible Duplicate:
Detect user logged on a computer using Java web app

I need to do that with tomcat and a J2EE Web App. I don't want a pop up window asking the user for credentials.

I must use the user logged on Windows to authenticate him on my web app.

How can I do it?

Thanks!

link|improve this question

wow, I had the same question! – Jason S Apr 16 '09 at 13:05
Not duplicate. More detailed question. – VansFannel Apr 16 '09 at 13:08
feedback

closed as exact duplicate by Will Nov 1 '11 at 12:16

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ.

2 Answers

I don’t believe Tomcat natively supports integrated authentication, however it does support custom authentication modules. Give these URL's a try:

http://appliedcrypto.com/files/tomcat_spnego.pdf

http://jcifs.samba.org/src/docs/ntlmhttpauth.html

link|improve this answer
feedback

Tomcat doesn't support NTLM authentication, but there are other Java security libraries that do, such as Spring Security. Using SS, we have Tomcat and JBoss applications which silently authenticate against an MS Active Directory in both IE and FF browsers.

Here's a URL that might be helpful: http://blog.mediasoft.be/ntlm-with-spring-security-20/

link|improve this answer
feedback

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