• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

unable to lookup EJB on weblogic 8.1 sp5

 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

this is the code we are using now.

when ever we run this code it is excuting the first print statement and it is not exceuting the next line and it is not throwing any exception(some times it's behaving like this).


system.out.println("inside else -- "+localHomeName);
String name = (String)initialContext.lookup(localHomeName);
system.out.println("name -- "+name);
localHome = (EJBLocalHome)initialContext.lookup(name);

Your help is appriciated.
 
reply
    Bookmark Topic Watch Topic
  • New Topic