For some reason, I can't seem to get my config going for the wbeapp I'm
working on.

The problem is as below:

The user is logged in with the com.web.controller.active.Play:*, and
com.web.controller.active.Results:* permissions.
The app goes through the Play/** url, and then sends a redirect to the
Results/** url.  When it does so I get an unauthorized 401.  This only
happens after I've added the rule:/** = authc, perms["*"]
If I add it as /** = authc it works fine, which is telling me that the
Results/** rule isn't being exercised, and the catch all rule is being used
instead.

I basically want to give admin permissions to all but 2 pages, and don't
want to add admin permissions everywhere.

I'm using jetty btw.


                /Css/** = anon
                /Images/** = anon
                /JavaScript/** = anon
                /SignUp/** = anon
                /Login/Show/0/** = authc
                /Play/** = authc, perms["com.web.controller.active.Play:*"]
                /Results/** = authc, 
perms["com.web.controller.active.Results:*"]
                /** = authc, perms["*"]

-- 
View this message in context: 
http://shiro-user.582556.n2.nabble.com/Catch-All-Urls-config-tp5698475p5698475.html
Sent from the Shiro User mailing list archive at Nabble.com.

Reply via email to