I have a web service outside of my company that provides no WSDL for their service. They do provide:
- a detailed document on how to
POSTto their service - what a
SoapEnvelopeshould look like - and even an
.xsdthat I can use to create the message to put in the SOAP<env:Body></env:Body>of the call.
How do you make a SOAP call to a web service without a WSDL (in Java)? I need a tool that can take my JAXB-formatted XML message, wrap it in a SOAP Envelope, and send it as HTTP POST to some web service (with SSL and Certificates).
Are there tools that make this easy? I've looked at CXF with JAX-WS dispatch briefly, but since most examples and documentation expect a wsdl document, I am not sure if CXF is what I should be using.