Hi, Please take a look at the below code. Might help. This is how I have configured LDAP with CAS. Also make sure that spring ldap and cas ldap libraries available and ldap is up and running.
<bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource"> <property name="pooled" value="false"/> <property name="urls"> <list> <value>ldap://10JRNP1:389</value> </list> </property> <property name="userDn" value="cn=Manager,dc=maxcrc,dc=com"/> <property name="password" value="secret"/> <property name="baseEnvironmentProperties"> <map> <entry key="java.naming.security.authentication" value="simple" /> </map> </property> </bean> -- You are currently subscribed to cas-dev@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-dev