RE: How to use request.isUserInRole(role) from JSTL?

2004-04-05 Thread Bill Siggelkow
With Struts -- Do stuff You can even check if a user has one of a list of roles using a comma-separated list Do stuff Bill Siggelkow [EMAIL PROTECTED] -Original Message- From: Zsolt Koppany [mailto:[EMAIL PROTECTED] Sent: Monday, April 05, 2004 2:54 PM To: Tag Libraries Us

Re: How to use request.isUserInRole(role) from JSTL?

2004-04-05 Thread Kris Schneider
Since you're using Struts, the best thing to do is perform that test in your action and use the result to make a decision about where to go next. You can also use the result to set a request attribute that's more easily accessed through JSTL's EL: Action: --- boolean isAdmin = request.isUserIn