we are using shiro as our security framework. we have a weird issue while logout. when we type the url (www.myWebapplication.com) in a browser it redirected to the login page .After login it landed you on the home page . now open a new tab and type the same url (www.myWebapplication.com) in a new tab it directly landed you on the home page . The logout is not working on the new tab. once logout button clicked it redirect to the home page. my shiro.ini looks like this
[main] authc = com.app.myapp.filters.MyFormAuthenticationFilter authc.failureKeyAttribute=simpleShiroApplicationLoginFailure authc.loginUrl = /jsp/my/common/login/Login.jsp authc.usernameParam = username authc.passwordParam = password authc.successUrl = /my/myadmin/common/home/HomePage.do?form=load&value=home roles.unauthorizedUrl = /myadmin/common/loginFailed.do logout= com.app.myapp.filters.MyLogoutFilter logout.redirectUrl = /jsp/my/common/login/Login.jsp [urls] /common/security/Logout.do=noSessionCreation,logout /jsp/my/common/login/Login.jsp=authc /jsp/**=authc /my/**=authc -- View this message in context: http://shiro-user.582556.n2.nabble.com/shiro-logout-issue-tp7579158.html Sent from the Shiro User mailing list archive at Nabble.com.
