Tomcat and windows integrated authentication - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T04:32:08Zhttp://stackoverflow.com/feeds/question/733289http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication0Tomcat and windows integrated authenticationVansFannel2009-04-09T08:08:05Z2009-04-22T13:50:01Z
<p>Hi!</p>
<p>I'm developing a JAVA APP that must run on a Tomcat and I need to be able to identify the remote user who is acceding to my application web.</p>
<p>This remote user is running on a windows, so I need to get his "windows login" (sAMAccountName active directory attribute).</p>
<p>On IIS is easiest. I follow this <a href="http://stackoverflow.com/questions/688939/detect-user-logged-on-a-computer-using-asp-net-app">http://stackoverflow.com/questions/688939/detect-user-logged-on-a-computer-using-asp-net-app</a> to get the user logged</p>
<p>The content of server.xml is:</p>
<pre><code><Realm
className="org.apache.catalina.realm.JNDIRealm" debug="99"
connectionURL="ldap://DAServer:389"
connectionName="userAuth@mydomain.local"
connectionPassword="secret"
referrals="follow"
userBase="OU=mycompany,DC=mydomain,DC=local"
userSubtree="true"
roleBase="OU=groups,DC=mydomain,DC=local"
roleName="name"
roleSubtree="true"
roleSearch="(member={0})"/>
</code></pre>
<p>And the content of web.xml is:</p>
<pre><code><!-- Define a Security Constraint on this Application -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Entire Application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>myCompany Users</role-name>
</auth-constraint>
</security-constraint>
<!-- Define the Login Configuration for this Application -->
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>myRealm</realm-name>
</login-config>
<!-- Security roles referenced by this web application -->
<security-role>
<description>The role that is required to log in to APP</description>
<role-name>myCompany Users</role-name>
</security-role>
</code></pre>
<p>I need Automatic Login.</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication/733312#7333120Answer by Konstantinos for Tomcat and windows integrated authenticationKonstantinos2009-04-09T08:15:47Z2009-04-09T08:15:47Z<p>you have to use the Tomcat JNDI realm and integrate it with your server's active directory</p>
<p>Try <a href="http://www.jspwiki.org/wiki/ActiveDirectoryIntegration" rel="nofollow">here</a> for some guidelines</p>
http://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication/742853#7428531Answer by bmatthews68 for Tomcat and windows integrated authenticationbmatthews682009-04-13T02:04:07Z2009-04-13T02:04:07Z<p>If you are building an Intranet application and are looking for SSO then you can use something like <a href="http://www.ioplex.com/jespa.html" rel="nofollow">Jespa</a> which is based on <a href="http://jcifs.samba.org/" rel="nofollow">jCIFS</a>.</p>
http://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication/777295#7772950Answer by VansFannel for Tomcat and windows integrated authenticationVansFannel2009-04-22T13:50:01Z2009-04-22T13:50:01Z<p>An answer could found here:</p>
<p><a href="http://stackoverflow.com/questions/726249/detect-user-logged-on-a-computer-using-java-web-app">http://stackoverflow.com/questions/726249/detect-user-logged-on-a-computer-using-java-web-app</a></p>
<p>See you!</p>