> the documentation available is either horribly out of date or > contains irrelevant erroneous information
Please help us improve it. We're all volunteers here. > I'm trying to install cas 3.5.2 with ldap authentication but I haven't been > able to find any information suitable for someone who isn't a level 10 java > developer or has been running CAS since the mid 1800's Ok, you get points for humor. > I am using the recommended method as described > here: > https://wiki.jasig.org/display/CASUM/Best+Practice+-+Setting+Up+CAS+Locally+using+the+Maven+WAR+Overlay+Method Good for you -- takes longer to learn, but serves you well in the long run. The good news is that I see the problem pretty clearly in your config. > <bean id="contextSource" > class="org.jasig.cas.adaptors.ldap.util.AuthenticatedLdapContextSource"> > <property name="pooled" value="true"/> > <property name="urls"> > <list> > <value>ldap://x.x.x.x:389</value> > </list> > </property> > </bean> > </beans> AuthenticatedLdapContextSource has been deprecated because we contributed a patch back into Spring LDAP. In any case you should use org.springframework.ldap.core.support.LdapContextSource since 3.5.x. I'd appreciate your contributing a doc fix to the CASUM wiki. Thanks, M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
