[jboss-user] [JBoss Seam] - Re: Role enforcement on a RESTful page

2006-10-23 Thread texan
Is it as simple as putting the role constraint in web.xml and including an tag for a 403?The problem I was having with interceptors is that I really want to control access to the page rather than the assortment of methods that get called from the page. View the original post : http://www.

[jboss-user] [JBoss Seam] - Re: Role enforcement on a RESTful page

2006-10-23 Thread cja987
We do that all the time ;) Seriously, it does make it easier to google solutions for a problem when one talks themself through the solution publicly. chuck View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3980168#3980168 Reply to the post : http://www.jboss.c

[jboss-user] [JBoss Seam] - Re: Role enforcement on a RESTful page

2006-10-23 Thread texan
Hmm, that won't work either, because the processing of the JSF components will have already happened, which means that a bunch of calls were already made to the action. I'm trying to catch it before any actions get invoked. Maybe a global action entry in the pages.xml file. Isn't it scary whe