Hi, What JNDI path should I use to lookup an EJB using a SessionContext which has been injected:
@Stateless
public class TestBean implements TestLocal
{
@Resource
private SessionContext sessionContext;
public void test()
{
sessionContext.lookup("???");
}
}
I've tried different combinations without any success...
Thanks
Christian
