Did you specify the security domain either as a annotation or in the jboss.xml? 
You can do that either through an annotation

  | @SecurityDomain("mypolicy")
  | @RolesAllowed({"authenticated"})
  | @Stateless
  | @Remote({AccountRDAO.class})
  | public class AccountRDAOAction extends RDAOAction
  |     implements AccountRDAO, Serializable

or through jboss.xml:

<jboss>
  |  <security-domain>mypolicy</security-domain>
  |  
  | </jboss>

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

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

Reply via email to