• 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

How to convert a SOAP Response to java class

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

I am New to Webservices. I have a requirement of getting data from a WSDL.

I have generated a client using Apache axis and successfully deployed and run on Tomcat 4.1.

Now i dont know how to Convert the SOAP Response i am getting in to a plain java bean?

Regards
Vishnu NV
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The client code that was generated should contain methods that allow you to access the response data directly, without having to work with the actual SOAP response. What are you trying to achieve by creating some other object from the response? And -assuming that there's a good reason for it- what would be the rules for converting a SOAP response to a Java bean?
 
reply
    Bookmark Topic Watch Topic
  • New Topic