Hi guys, I have a web page using Shiro, Tapestry and Tapestry-Security. It works great.
I would like to do something like this, but can't find the info: String page = "http://www.example.com/secured/page1"; if(isAuthorized(page) // check against current Subject and current Shiro config { println("This page is Authrized"); redirect(page); } i.e. I would like to check if a page is authorized or not, running via Shiro's existing configuration just like it would when the page is accessed, but before its done so. The URLs are actually relative though. Thanks for all your help.
