1 Reply Latest reply on Feb 21, 2005 1:57 PM by starksm64

    Get Principal Name from EJB

    fmaredia

      How do I access the Principal information from the EJB?

      @MethodPermissions({"student"})
      @TransactionAttribute(TransactionAttributeType.REQUIRESNEW)
      public boolean doSomething(Quote quote) {
      . . .
      }

      I know when a user does not have permission to access a method it returns an error stating the Principal name and than the role. So I am assuming that the EJB does know the principal, so how do I find out which user is accessing the method?