I just want to call a Ruleset with Local EJB3 Session.
I get the exception javax.naming.NameNotFoundException:
Name "ilog.rules.res.session.impl.ejb3.IlrStatelessSessionLocal"
not found in context "ejblocal:" in websphere
. What are the possibilities that this can happen?
source codes:
// get a rulesession --- 001
IlrEJB3SessionFactory sessionFactory = new IlrEJB3SessionFactory();
sessionFactory.setStatelessLocalJndiName("ejblocal:ilog.rules.res.session.impl.ejb3.IlrStatelessSessionLocal");
sessionFactory.setRemote(false);
Regards