Hello Ben,
Here is a more complete log. I first restarted the server, then visited index.html. On that page, I have a form for logon. I logged on, and I was sent back to my failed login page.
The log is separated in three parts. First, the initial application startup, and "index.html" processing:
Code:
2005-01-28 16:01:59,750 [DEBUG] basicauth.BasicProcessingFilter - Authorization header: null
2005-01-28 16:01:59,781 [DEBUG] ui.AbstractIntegrationFilter - Authentication not added to ContextHolder (could not extract an authentication object from the container which is an instance of Authentication)
2005-01-28 16:01:59,812 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Converted URL to lowercase, from: '/index.html'; to: '/index.html'
2005-01-28 16:01:59,812 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Candidate is: '/index.html'; pattern is \A/careernudge/admin/.*\Z; matched=false
2005-01-28 16:01:59,812 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Candidate is: '/index.html'; pattern is \A/careernudge/.*\Z; matched=false
2005-01-28 16:01:59,812 [DEBUG] intercept.AbstractSecurityInterceptor - Public object - authentication not attempted
2005-01-28 16:01:59,890 [DEBUG] servlet.DispatcherServlet - DispatcherServlet with name 'careernudge' received request for [/cn/index.html]
2005-01-28 16:01:59,890 [DEBUG] servlet.DispatcherServlet - Testing handler map [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping@1642bd6] in DispatcherServlet with name 'careernudge'
2005-01-28 16:01:59,890 [DEBUG] servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@179f36b]
2005-01-28 16:01:59,921 [DEBUG] servlet.DispatcherServlet - Will render view in DispatcherServlet with name 'careernudge'
2005-01-28 16:01:59,921 [INFO ] view.InternalResourceViewResolver - Cached view 'index'
2005-01-28 16:02:03,796 [DEBUG] servlet.DispatcherServlet - Successfully completed request
2005-01-28 16:02:05,671 [DEBUG] web.SecurityEnforcementFilter - Chain processed normally
2005-01-28 16:02:05,671 [DEBUG] ui.AbstractIntegrationFilter - ContextHolder does not contain any authentication information
Second, my logon attempt:
Code:
2005-01-28 16:02:10,359 [DEBUG] ui.AbstractProcessingFilter - Request is to process authentication
2005-01-28 16:02:10,359 [DEBUG] providers.ProviderManager - Authentication attempt using net.sf.acegisecurity.providers.dao.DaoAuthenticationProvider
2005-01-28 16:02:10,359 [DEBUG] cache.EhCacheBasedUserCache - Cache hit: false; username: fbos
2005-01-28 16:02:10,390 [WARN ] event.LoggerListener - Authentication failed due to incorrect password for user: fbos; details: 127.0.0.1
2005-01-28 16:02:10,390 [DEBUG] ui.AbstractProcessingFilter - Authentication request failed: net.sf.acegisecurity.BadCredentialsException: Bad credentials presented
2005-01-28 16:02:10,421 [DEBUG] basicauth.BasicProcessingFilter - Authorization header: null
2005-01-28 16:02:10,421 [DEBUG] ui.AbstractIntegrationFilter - Authentication not added to ContextHolder (could not extract an authentication object from the container which is an instance of Authentication)
Then, the redirect to loginFailed.html:
Code:
2005-01-28 16:02:10,421 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Converted URL to lowercase, from: '/loginfailed.html'; to: '/loginfailed.html'
2005-01-28 16:02:10,421 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Candidate is: '/loginfailed.html'; pattern is \A/careernudge/admin/.*\Z; matched=false
2005-01-28 16:02:10,421 [DEBUG] web.RegExpBasedFilterInvocationDefinitionMap - Candidate is: '/loginfailed.html'; pattern is \A/careernudge/.*\Z; matched=false
2005-01-28 16:02:10,421 [DEBUG] intercept.AbstractSecurityInterceptor - Public object - authentication not attempted
2005-01-28 16:02:10,421 [DEBUG] servlet.DispatcherServlet - DispatcherServlet with name 'careernudge' received request for [/cn/loginFailed.html]
2005-01-28 16:02:10,421 [DEBUG] servlet.DispatcherServlet - Testing handler map [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping@1642bd6] in DispatcherServlet with name 'careernudge'
2005-01-28 16:02:10,421 [DEBUG] servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@179f36b]
2005-01-28 16:02:10,421 [DEBUG] servlet.DispatcherServlet - Will render view in DispatcherServlet with name 'careernudge'
2005-01-28 16:02:10,421 [INFO ] view.InternalResourceViewResolver - Cached view 'loginFailed'
2005-01-28 16:02:11,718 [DEBUG] servlet.DispatcherServlet - Successfully completed request
2005-01-28 16:02:11,750 [DEBUG] web.SecurityEnforcementFilter - Chain processed normally
2005-01-28 16:02:11,750 [DEBUG] ui.AbstractIntegrationFilter - ContextHolder does not contain any authentication information
My log4j.properties file contains the following:
Code:
log4j.logger.net.sf.acegisecurity = DEBUG
log4j.logger.org.springframework.web.servlet.DispatcherServlet = DEBUG
Any help greatly appreciated 
Bye !
François