wadii wrote: > Hello, > > I want to add a new property to my authentification handler I define a > new variable with get and set fonctions and in deployerConfigContex.xml > > <bean > class="org.jasig.cas.adaptors.ldap.MyBindLdapAuthenticationHandler"> > <property name="filter" value="uid=%u" /> > > <property name="searchBase" > value="ou=Users,ou=Extranet,dc=devel-atih,dc=sante,dc=fr" /> > <property name="scope" value="2" /> > <property name="cryptype" value="0" /> > <property name="contextSource" ref="contextSource" /> > </bean>
Besides what David wrote I suspect that you're trying to deal separately with hashed password which is not necessary anyway. You should always send the clear-text password in a simple bind request and the server checks against the stored hash. Ciao, Michael. _______________________________________________ Yale CAS mailing list [email protected] http://tp.its.yale.edu/mailman/listinfo/cas
