The information in that section should be correct as I used it to test
securing Tomcat Manager.

On Jan 8, 2008 8:11 PM, Scott Battaglia <[EMAIL PROTECTED]> wrote:

> Which document would you be looking at that would be "completely
> incorrect"?
>
> This would be the configuration for the CAS Client for Java v3.1-rc1:
> http://www.ja-sig.org/wiki/display/CASC/CAS+Client+for+Java+3.1
>
> On Jan 8, 2008 7:49 PM, Rick Robinson <[EMAIL PROTECTED]> wrote:
>
> >  For those of you having the horrid time of using/integrating the CAS
> > 3.1-RC1 client because of the completely incorrect documentation…I took
> > a half hour and worked on a very abbreviated configuration (
> > security-context.xml) for non-proxied users to be able to get stated
> > with…
> >
> > It assumes the same values for properties (athough only a couple of them
> > are used in the sample below) and the same web.xml filter configuration
> > as the incorrect doc has.
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> > <beans xmlns="http://www.springframework.org/schema/beans";
> >        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> >        xsi:schemaLocation="http://www.springframework.org/schema/beans *
> > http://www.springframework.org/schema/beans/spring-beans.xsd*<http://www.springframework.org/schema/beans/spring-beans.xsd>
> > ">
> >
> >     <bean id="propertyPlaceholderConfigurer"
> >           class="
> > org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
> >         <property name="location" value="/WEB-INF/cas-client.properties
> > "/>
> >     </bean>
> >
> >     <bean id="ticketValidator" class="
> > org.jasig.cas.client.validation.Cas20ServiceTicketValidator">
> >         <constructor-arg index="0" value="${cas.server.url}"/>
> >     </bean>
> >
> >     <bean id="casValidationFilter" class="
> > org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter
> > ">
> >         <property name="ticketValidator" ref="ticketValidator"/>
> >         <property name="serverName" value="${cas.client.serverName}"/>
> >     </bean>
> >
> >     <bean id="casAuthenticationFilter" class="
> > org.jasig.cas.client.authentication.AuthenticationFilter">
> >         <property name="serverName" value="${cas.client.serverName}"/>
> >         <property name="casServerLoginUrl" value="${cas.server.url
> > }login"/>
> >     </bean>
> > </beans>
> >
> > Best regards,
> > R
> >
> > _______________________________________________
> > Yale CAS mailing list
> > [email protected]
> > http://tp.its.yale.edu/mailman/listinfo/cas
> >
> >
>
>
> --
> -Scott Battaglia
>
> LinkedIn: http://www.linkedin.com/in/scottbattaglia




-- 
-Scott Battaglia

LinkedIn: http://www.linkedin.com/in/scottbattaglia
_______________________________________________
Yale CAS mailing list
[email protected]
http://tp.its.yale.edu/mailman/listinfo/cas

Reply via email to