this is the filterchain
Code:
/**=httpSessionContextIntegrationFilter,logoutFilter,authenticationProcessingFilter,securityContextHolderAwareRequestFilter,rememberMeProcessingFilter,anonymousProcessingFilter,exceptionTranslationFilter,filterInvocationInterceptor
the exceptionTranslationFilter
Code:
<bean id="exceptionTranslationFilter"
class="org.acegisecurity.ui.ExceptionTranslationFilter">
<property name="authenticationEntryPoint">
<bean
class="org.acegisecurity.ui.webapp.AuthenticationProcessingFilterEntryPoint">
<property name="loginFormUrl" value="/rfslogin.jsp" />
<property name="forceHttps" value="false" />
</bean>
</property>
<property name="accessDeniedHandler">
<bean
class="org.acegisecurity.ui.AccessDeniedHandlerImpl">
<property name="errorPage" value="/accessDenied.jsp" />
</bean>
</property>
</bean>
and the exception
Code:
o rg.springframework.web.util.NestedServletException: Request processing failed; nested exception is o rg.springframework.webflow.execution.FlowExecutionException: Exception thrown in state 'startRFSPortal' of flow 'rfsportal-flow'; nested exception is o rg.acegisecurity.AccessDeniedException: Access is denied
any suggestions?