Jboss Migration: I am migrating our application from Weblogic 7.0 to JBoss 4.0.5. I have successfully Deployed our ear file after changing all xml files on JBoss. But now i am facing problem regarding to ejb JNDI lookup for Local Entity Bean
Actually I have lookup entity bean through another ejb.Now if my application executes that time following error occurs. No binding for: ejb in context env, bindings: javax.naming.NameNotFoundException: ejb not bound or in my log com.xxxxx.exception.XXXXException: MSG: java.rmi.ServerException: EJBException:; nested exception is: com.cedera.exception.EJBException: MSG: javax.naming.NameNotFoundException: ejb not bound ejb not bound TIME: 0EJBException:; nested exception is: com.exception.EJBException: MSG: javax.naming.NameNotFoundException: ejb not bound ejb not bound TIME: 0 TIME: 0 In Detail : I am getting remote interface in the client bean. In that remote interface there is one method call getProductDetails(). In this method we have again lookup our entity bean but it is giving error while running the application. Following is the necessary information JNDI VIEW: java:comp namespace of the BusinessSKUEntity bean: +- HandleDelegate +- ORB +- env | +- ejb | | +- local | | | +- BusinessSKUEntity[link -> local/[EMAIL PROTECTED] Above is my entity bean jndi view for BusinessSKUEntity. My code to lookup : InitialContext initialcontext = new InitialContext(); BusinessSKUEntityHome businessskuentityhome = (BusinessSKUEntityHome)initialcontext.lookup("java:comp/env/ejb/local/BusinessSKUEntity"); BusinessSKUEntityPK businessskuentitypk = new BusinessSKUEntityPK(i); BusinessSKUEntity businessskuentity = businessskuentityhome.findByPrimaryKey(businessskuentitypk); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060700#4060700 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4060700 _______________________________________________ jboss-user mailing list jboss-user@lists.jboss.org https://lists.jboss.org/mailman/listinfo/jboss-user