> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> > <init-param> > <param-name>saml1Authenticaion</param-name> > <param-value>authenticationFilter</param-value> > </init-param>
The param name must be targetBeanName. > In Spring applicationContext.xml, I have > > <bean id="saml11Authentication" > class="org.jasig.cas.client.authentication.Saml11AuthenticationFilter"/> > > <bean > name="authenticationFilter" > class="org.jasig.cas.client.authentication.Saml11AuthenticationFilter" > p:casServerLoginUrl="https://test.server.com:8443/cas/login" > p:renew="false" > p:gateway="false" > p:service="https://web.server.com:8443" /> Delete the "saml11Authentication" bean and you should be a step closer. 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
