hi,
i am getting this error when trying to call a Sessionbean via JNDI Lookup.
Exception Details:
Caused by: java.lang.IllegalStateException
at com.sap.engine.services.ejb.session.stateless_sp5.StatelessContext.assertLegalState(StatelessContext.java:124)
at com.sap.engine.services.ejb.session.stateless_sp5.StatelessContext.getCallerPrincipal(StatelessContext.java:241)
at com.sap.engine.services.ejb.session.stateless_sp5.BeanContext.getCallerPrincipal(BeanContext.java:74)
does anyone have a clue?
thanks
norbert
Hi norbert,
In ejbCreate of a stateless session bean you cannot access user/security information using session context/ejb context.
You can get user information only within a business method of your stateless session bean.
Regards,
Prasad
Add a comment