M
Matt Baker
Guest
Possible explanation which I've run into. Not specifically with PAS, but this is probably the same issue. This is due to a combination of things. 1. when the browser first your website it sends the first HTTP request to get favicon.ico, not the actual page you requested 2. an HTTP session is created and the first requested object is stored with the session. 3. you get a redirect to login 4. the login completes and you get redirected back to the first requested object. In this case it is the favicon.ico. The fix for this is to ensure that your favicon.ico is not protected by security and is ignored for session management There's lots of stuff there on google about this. stack overflow suggests a fix to add an exception https://stackoverflow.com/questions/11242609/default-spring-security-redirect-to-favicon
Continue reading...
Continue reading...