JBoss Portal Version       2.2.1 SP3 downloaded
JBoss AS Version           4.0.4 GA
OS Platform                  Windows XP

>From JSPs, the request.isUserInRole("rolename") is returning false.  We 
>discovered that this is hardcoded to "return false" in the 
>DispatchedHttpServletRequest class.  We located the method being called by 
>stepping through the debugger in Eclipse.  This isn't the behavior we 
>expected, but is it done for a reason?  


package org.jboss.portal.portlet.impl;
public class DispatchedHttpServletRequest implements HttpServletRequest
{
   . . . . 
   public boolean isUserInRole(String s)
   {
      return false;
   }
   . . . . 
}

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982463#3982463

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3982463
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to