Hi fellas, 

has anyone gotten Spring Security 2 to integrate with Tapestry 5?  I have
Spring running but it seems to be ignoring the security.xml rules

I have this in my web.xml

<filter>
        <filter-name>securityFilter</filter-name>
       
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
        <init-param>
            <param-name>targetBeanName</param-name>
            <param-value>springSecurityFilterChain</param-value>
        </init-param>
    </filter>
<filter-mapping>
        <filter-name>securityFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
<filter>
        <filter-name>app</filter-name>
       
<filter-class>org.apache.tapestry5.spring.TapestrySpringFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>app</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

and this is part of the security.xml file

<http auto-config="true" lowercase-comparisons="false">
        <intercept-url pattern="/Index" access="ROLE_ADMIN,ROLE_USER"/>
        <form-login login-page="/Login"
authentication-failure-url="/Login?error=true"
login-processing-url="/j_security_check" default-target-url="/Index"/>
    </http>

Instead of going to the login page it defaults to the welcome-page.  Anyone
gotten this to work?

Thanks, 

..kace
-- 
View this message in context: 
http://www.nabble.com/-T5--Spring-Security-2-Integration-tp18877587p18877587.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to