> I want to configure cas-3.1-m1 to use the RADIUS handler.

I *think* this should work:
--------------------------------
                <property name="authenticationHandlers">
                         <list>
...
                                 <bean

class="org.jasig.cas.adaptors.radius.authentication.handler.support.RadiusAuthenticationHandler">
                                         <property name="servers">
                                          <list>
         <bean id="radiusServer1"
class="org.jasig.cas.adaptors.radius.JRadiusServerImpl">
            <property name="hostname" value="radius1.example.be"/>
            <property name="sharedSecret" value="secret1"/>
         </bean>

         <bean id="radiusServer2"
class="org.jasig.cas.adaptors.radius.JRadiusServerImpl">
            <property name="hostname" value="radius2.example.be"/>
            <property name="sharedSecret" value="secret2"/>
         </bean>

                                          </list>
                                         </property>
                                         <property
name="failoverOnException" value="false"/>
                                         <property
name="failoverOnAuthenticationFailure" value="false"/>
                                 </bean>
                         </list>
                 </property>
         </bean>
--------------------------------

You can use bean ref's if you want to (that's why I left in the id's).

ps:
http://static.springframework.org/spring/docs/current/reference/beans.html#beans-factory-xml-import
http://static.springframework.org/spring/docs/current/reference/springbeansdtd.html

-- Velpi
_______________________________________________
Yale CAS mailing list
[email protected]
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to