How to handle rpc / literal web service with JAXB2 and Spring-WS

We need to access a legacy webservice that uses the RPC / literal webservice style and also provide webservice endpoints for it. If you are using document / literal style webservices with Spring WebserviceTemplates / WebserviceEndpoints, you can use JAXB2 to generate / marshal / cancel webservice request. But how do you do it with RPC / literal style? The org.jvnet.jaxb2.maven2 framework: maven-jaxb2-plugin doesn't seem to be able to generate Java classes for requests / responses.

+1


a source to share


1 answer


With rpc / literal, you'll be stuck in the dark ages of Axis 1.4



Spring-WS or Jax-WS won't help you with this as a docs / literal compliant WS-I Basic Profile concentrate.

+1


a source







All Articles