Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configure the ldap context in uportal-impl/src/main/resources/properties/contexts/ldapContext.xml

Code Block
xml
xml
<beans ...><beans>
  ...
  <bean id="defaultLdapContext" class="org.springframework.ldap.core.support.LdapContextSource">
    <property name="url" value="ldap://ldap.myuniv.edu:389"/>
    <property name="pooled" value="false"/>
    <property name="userName" value=""/>
    <property name="password" value=""/>
  </bean>
  ...
</beans>

...