• 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

JBOSS web service client doesn't work ( runtime modeler error: Wrapper class not found )

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a simple hello-world EJB3 successfully deployed as web service. I can check it with url: http://localhost:8080/jbossws/services


Following is the client which works for Glassfish but doesn't work for JBOSS



Here is how I execute the client and the error I get:



Do I need to generate something ? Am I missing some jar file(s) ?

 
Ranch Hand
Posts: 69
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try this, if you are in Jboss4.2 try this.

Copy $JBOSS_HOME/lib/endorsed/xercesImpl.jar into $JBOSS_HOME/client directory. This is to resolve an issue in JBoss4.2 about a class not found.
Copy $JBOSS_HOME/server/default/lib/jboss-saaj.jar to $JBOSS_HOME/lib/endorsed

 
Hardik Mehta
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Lalit,

I sorted out this problem. It was a missing jars problem indeed and I ended up with following in my class path:
All the libs are from jboss/client


But after the client started running properly, I got following exception in my server.log



And on client side it looks like following:


Just for info: I installed jboss from jboss-5.1.0.GA-jdk6.zip

thanks & regards.
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
did you solve your problem? I have exactly the same with JBOSS 5.1.0GA JDK1.6 compiled. I'm not able to call the webservice with the "setProperty must be overridden by all subclasses of SOAPMessage" exception.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic