• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

SOAP Error

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
i am doing a soap call from AST(Application Server Tool Kit).
i am getting this exception:

java.lang.NoClassDefFoundError: com.ibm.wsspi.extension.ExtensionRegistryFactory


Can any body send me solution for this.

Thanks in Advance>
 
Ranch Hand
Posts: 109
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's because the web service you're invoking is missing com.ibm.wsspi.extension.ExtensionRegistryFactory. This can be due to the fact its classpath is not properly set or typically if it's an axis1 web service, the required class should be in axis/web-inf/lib.
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can some one tell me which jar contains this class: com/ibm/wsspi/extension/ExtensionRegistryFactory?

Many thanks,

T
 
Tausif Farooqi
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, I posted the question too soon, I got the jar: com.ibm.ws.webservices.thinclient_6.1.0.jar
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use com.ibm.wsspi.extension.ExtensionRegistryFactory class from the jar IBM\SDP70\runtimes\base_v61\bin\ProfileManagement\plugins\com.ibm.websphere.v61_6.1.1\ws_runtime.jar and it will work fine.
 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Pratap Shinde wrote:Use com.ibm.wsspi.extension.ExtensionRegistryFactory class from the jar IBM\SDP70\runtimes\base_v61\bin\ProfileManagement\plugins\com.ibm.websphere.v61_6.1.1\ws_runtime.jar and it will work fine.



Thank you very much It worked fine

Regards
reply
    Bookmark Topic Watch Topic
  • New Topic