• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

NameNotFoundException

 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all
Even i have a problem with jndi look up, just see if u can help me out
i have a session bean deployed on server "A" and my client is on m/c B. The client is a batch application, which calls the session bean on server "A"
Now when i do a look up in my client code, it gives me "javax.naming.NameNotFoundException".

Here is the same code abt look up
try
{

Properties properties = new Properties();
properties.put( javax.naming.Context.PROVIDER_URL, "IIOP://10.10.30.192:900/" );

properties.put( javax.naming.Context.INITIAL_CONTEXT_FACTORY,
"com.ibm.websphere.naming.WsnInitialContextFactory");

Context ctx = new InitialContext(properties);

Object ref = ctx.lookup("InSystems/Corr/Api/CorrXmlApi");
corrXmlApiHome = (CorrXmlApiHome)PortableRemoteObject.narrow(ref, CorrXmlApiHome.class);
corrXmlApi = corrXmlApiHome.create();
}
catch(NamingException nep)
{
nep.printStackTrace();
Renewalog.warn(ExceptionConstant.ErrorMessage_RenewalProcesser_1);
throw new RenewalException(ExceptionConstant.ErrorMessage_RenewalProcesser_1, nep);
}

Same jndi name exist in ibm-ejb-jar-bnd.xml file. Can u let me know what's the problem.

Regards
Makarand Parab
 
I'm doing laundry! Look how clean this tiny ad is:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic