I tried several ways in the session bean, like:
@Resource
private SessionContext ctx;
OR
private SessionContext ctx;
@Resource
private void setSessionContext(SessionContext ctx) {
this.sctx = ctx;
}
OR
InitialContext ic = new InitialContext();
SessionContext ctx = (SessionContext) ic.lookup("java:comp/env/sessionContext");
None of them worked, differnet exceptions occured in JBOSS.
I really get mad about it. Anyone could tell me what's wrong. Thanks a lot!