vote up 1 vote down star
2

How to configure Tomcat 5.5 to authenticate against Win2003 Activedirectory(LDAP)

What changes are needed to default tomcat configuration, at least server.xml needs to be changed somehow to have IP of Win2003 server?

flag

77% accept rate

3 Answers

vote up 1 vote down check

I don't know if "automatic" login with IE is possible.

But you can use a "classic" login form (JEE style) and let Tomcat perform the login against Active Directory using a JNDI Realm.

change the default realm in your server.xml or set the realm in your application's context.xml like this:

    <Realm
	    className="org.apache.catalina.realm.JNDIRealm"
	    debug="99"
	    connectionURL="ldap://your-activedirectory-server:389"
	    connectionName="a user with read access to AD (optional if anonymous access is permitted)"
	    connectionPassword="password"
	    referrals="follow"
	    userBase="where to look for users, for instance: DC=mycompany,DC=com"
	    userSearch="(sAMAccountName={0})"
	    userSubtree="true"
	    roleBase="where to look for groups, for instance: DC=mycompany,DC=com"
	    roleName="cn"
	    roleSearch="(member={0})"
	    roleSubtree="true"/>

More informations here: Apache Tomcat 5.5 Realm Configuration HOW-TO

And: Active Directory Integration

link|flag
thanks, catalina log shows now: PartialResultException LDAP error 10 any ideas how to fix it? – Tom Dec 11 '08 at 10:46
No ideas, I just know how to perform a basic configuration, good luck. – Jerome Delattre Dec 12 '08 at 13:23
vote up 0 vote down

I want LDAP login that picks user name from activedirectory, the browser will display the user+pwd dialog when you are using firefox etc.

Its OK if IE handshakes automatically but its not necessary.

link|flag
vote up 0 vote down

Configuring Tomcat With Active Directory. Have not tried it. Good luck.

link|flag

Your Answer

Get an OpenID
or

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