I presume that the login processing URL is the filterProcessesUrl on my custom AuthenticationProcessingFilter:
<property name="filterProcessesUrl" value="/j_security_check"/>
Someone...
Type: Posts; User: brewsterr; Keyword(s):
I presume that the login processing URL is the filterProcessesUrl on my custom AuthenticationProcessingFilter:
<property name="filterProcessesUrl" value="/j_security_check"/>
Someone...
See attached zip file with the security.xml that works. Notice that I did not use any of the namespace configurations, but used only Spring beans. I could have used the <anonymous> element in...
I fixed the authenticationProcessingFilterEntryPoint and now my filter is activated.
<property name="loginFormUrl" value="/j_security_check"/>
should have been
<property...
Thanks for the replies. I removed form-login and the ExceptionTranslationFilter and added the entry-point-ref to reference my AuthenticationProcessingFilterEntryPoint.
But my custom...
Using Spring Security 2.0.3.
I have written a custom AuthenticationProcessingFilter and AuthenticationProvider and want to plug this in to replace the form-login.
<bean...