I dont have a simple example formed up to submit yet, but what I have found is that my requests are being handled on multiple Threads (box stock Tomcat8) so I am seeing multiple different Subject (WebDelegatingSubject) Objects being stored in the ThreadLocal of ThreadContext, so only one of those gets set to isAuthenticated=true, so on next request from a different Thread, it finds a Subject that has not been marked as isAuthenticated=true, thus the redirect back to Login.html.
So I am not sure if there is something different I need to do when using Tomcat to ensure use of the same Thread? Im assuming Jetty doesn't do this, but just a guess. Thoughts? -- View this message in context: http://shiro-user.582556.n2.nabble.com/Shiro-rediecting-back-to-Login-after-successful-Login-tp7581130p7581163.html Sent from the Shiro User mailing list archive at Nabble.com.
