Tomcat and windows integrated authentication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T04:32:08Z http://stackoverflow.com/feeds/question/733289 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication 0 Tomcat and windows integrated authentication VansFannel 2009-04-09T08:08:05Z 2009-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>&lt;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})"/&gt; </code></pre> <p>And the content of web.xml is:</p> <pre><code>&lt;!-- Define a Security Constraint on this Application --&gt; &lt;security-constraint&gt; &lt;web-resource-collection&gt; &lt;web-resource-name&gt;Entire Application&lt;/web-resource-name&gt; &lt;url-pattern&gt;/*&lt;/url-pattern&gt; &lt;/web-resource-collection&gt; &lt;auth-constraint&gt; &lt;role-name&gt;myCompany Users&lt;/role-name&gt; &lt;/auth-constraint&gt; &lt;/security-constraint&gt; &lt;!-- Define the Login Configuration for this Application --&gt; &lt;login-config&gt; &lt;auth-method&gt;BASIC&lt;/auth-method&gt; &lt;realm-name&gt;myRealm&lt;/realm-name&gt; &lt;/login-config&gt; &lt;!-- Security roles referenced by this web application --&gt; &lt;security-role&gt; &lt;description&gt;The role that is required to log in to APP&lt;/description&gt; &lt;role-name&gt;myCompany Users&lt;/role-name&gt; &lt;/security-role&gt; </code></pre> <p>I need Automatic Login.</p> <p>Thank you!</p> http://stackoverflow.com/questions/733289/tomcat-and-windows-integrated-authentication/733312#733312 0 Answer by Konstantinos for Tomcat and windows integrated authentication Konstantinos 2009-04-09T08:15:47Z 2009-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#742853 1 Answer by bmatthews68 for Tomcat and windows integrated authentication bmatthews68 2009-04-13T02:04:07Z 2009-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#777295 0 Answer by VansFannel for Tomcat and windows integrated authentication VansFannel 2009-04-22T13:50:01Z 2009-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>