> As you said I can send some compare request instead of bind request. > Could you please elaborate on this, I mean how can this be achieved?
Both the LDAP authentication handlers provided with CAS perform authentication via a bind operation. You'll need to write your own implementation of AbstractLdapUsernamePasswordAuthenticationHandler, http://developer.jasig.org/source/browse/jasigsvn/cas3/tags/cas-3-3-1-final/cas-server-support-ldap/src/main/java/org/jasig/cas/adaptors/ldap/AbstractLdapUsernamePasswordAuthenticationHandler.java?r=42776, that performs authn via the LDAP compare operation. The following Sun doc has a Java example of how to implement a compare operation, http://java.sun.com/products/jndi/tutorial/ldap/search/compare.html. 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
