• 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

Error calling webservice from JSP in WebLogic 8.1 SP4

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We recently upgraded from Web Logic Server 6.1 to Web Logic 8.1 SP4. I did not encounter any errors during building of the webservice nor during deployment.

However, I am getting the following error:

javax.naming.NameNotFoundException: While trying to lookup 'EcasServicesuri.wsdl' didn't find subcontext 'EcasServicesuri' Resolved ; remaining name 'EcasServicesuri/wsdl'

The code is as follows:

Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY,
weblogic.jndi.WLInitialContextFactory.class.getName());
String url = ECWSurl+"/EcasServices";
env.put(Context.PROVIDER_URL, url);
Context context = new InitialContext(env);
EcasServices service = (EcasServices)context.lookup ("EcasServicesuri.wsdl");

Could anyone please throw light on what I am doing wrong? I am new to Web Logic and Web Services. Any help is greatly appreciated.
 
reply
    Bookmark Topic Watch Topic
  • New Topic