Hi,
I have my ExceptionTransationFilter:
Code:
<beans:bean id="exceptionTranslationFilter" 
	class="org.springframework.security.ui.ExceptionTranslationFilter">
	<beans:property name="authenticationEntryPoint" ref="authenticationEntryPoint"/>
</beans:bean>
<beans:bean id="authenticationEntryPoint"	class="org.springframework.security.ui.webapp.AuthenticationProcessingFilterEntryPoint">
	<beans:property name="loginFormUrl" value="/login.html"/>
	<beans:property name="forceHttps" value="false"/>
</beans:bean>
When I access a retricted page, I am redirerect to the login page.
If i try to access to the webflow:
Code:
<view-state id="search" view="blablalba" model="blablabla">
	<secured attributes="ROLE_USER" />
...
I'm not redirect to the login page but I see the "access denied error".
What happens?