> How can I do to make each > org.jasig.cas.adaptors.ldap.BindLdapAuthenticationHandler use a specific > org.jasig.cas.adaptors.ldap.BindLdapAuthenticationHandler ?
You'll want to use LinkedAuthenticationHandlerAndCredentialsToPrincipalResolverAuthenticationManager. [1] That said, we strongly advise against allowing the same principal name to exist in multiple authentication contexts due to the potential for ambiguity in CAS clients. You'll need to consider a method that allows clients to distinguish between the two principals; using a domain-scoped principal identifier would be one method. Alternatively you could leverage attribute release to provide a domain attribute that clients could inspect. M [1] https://github.com/Jasig/cas/blob/master/cas-server-core/src/main/java/org/jasig/cas/authentication/LinkedAuthenticationHandlerAndCredentialsToPrincipalResolverAuthenticationManager.java -- 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
