[jboss-user] [EJB 3.0 Users] - Re: NotBound ERRoR

Wolfgang Knauf do-not-reply at jboss.com
Wed Dec 2 08:00:51 EST 2009


Hi,

Do you have a "jndi.properties" file? If not, you have to provide some properites to "InitialContext":
        Properties props = new Properties();
  |         props.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
  |         props.setProperty(Context.URL_PKG_PREFIXES, "org.jboss.naming.client");
  |         props.setProperty(Context.PROVIDER_URL, "jnp://localhost:1099");
  |         props.setProperty("j2ee.clientName", "ClientNameFromJBossClientXML");
  |         
  |         InitialContext initialContext = new InitialContext(props);

What is the value of "HotelTestBean.RemoteJNDIName"?
It should be "EARName/EJBName/remote" if your app is bundled as EAR file, or "EJBName/remote" if you deploy only an EJB jar.

Hope this helps

Wolfgang

View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4268520#4268520

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4268520



More information about the jboss-user mailing list