"beherenow" wrote : That's right but..
|
| How do you get the current sessionContext?
There's a callback method setSessionContext which gets called by the container. See
this for more details
http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/ejb/SessionBean.html#...
You can use this method to store the sessionContext:
private SessionContext sessionContext;
| public void setSessionContext(SessionContext sessCtx) {
| this.sessionContext = sessCtx;
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4142333#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...