Hi,
I have my ExceptionTransationFilter:
When I access a retricted page, I am redirerect to the login page.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>
If i try to access to the webflow:
I'm not redirect to the login page but I see the "access denied error".Code:<view-state id="search" view="blablalba" model="blablabla"> <secured attributes="ROLE_USER" /> ...
What happens?


