Hi,

I want to configure cas-3.1-m1 to use the RADIUS handler.
I configured this in deployerconfigContext.xml, but I'm not too familiar 
with the Spring framework, so I guess I've have used the wrong syntax...
Probably this will be very easy once you fully understand spring :-)

Here is a fragment of my configuration:
               <property name="authenticationHandlers">
                        <list>
...
                                <bean
                                        
class="org.jasig.cas.adaptors.radius.authentication.handler.support.RadiusAuthenticationHandler">
                                        <property name="servers" 
ref="radiusServer"/>
                                        <property 
name="failoverOnException" value="false"/>
                                        <property 
name="failoverOnAuthenticationFailure" value="false"/>
                                </bean>
                        </list>
                </property>
        </bean>
        <bean id="radiusServer" 
class="org.jasig.cas.adaptors.radius.JRadiusServerImpl">
           <property name="hostname" value="radius.example.be"/>
           <property name="sharedSecret" value="secret"/>
        </bean>

I need to pass on an array of RadiusServers to the 
RadiusAuthenticationHandler. I thought I could solve this by creating a 
bean for JRadiusServerImpl, but apparently that's not the right way to go...

Any help would be kindly appreciated,

Philip




Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm

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

Reply via email to