• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

How to customise body of soap web service envelope created with Spring-WS?

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to develop web service for "hard coded" client. Spring-WS is using. I have xsd which is used to generate wsdl by Spring-WS.

The problem is that Spring-ws generates wsdl with one single element in body - processRequestRequest:


But i need to have two root elements in body (instead of processRequestRequest accumulated authData and processRequestData), like:


Please, give me some advise how to change soap envelope body. I tried to change xsd but with out any success - spring ws always create one single root element in soap envelop body. Thank you for helping.
 
Ranch Hand
Posts: 672
4
Eclipse IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is always only one Root element in XML and this cannot be changed.
can you explain your need to have 2 root elements?
reply
    Bookmark Topic Watch Topic
  • New Topic