I'm having to create a web service to a schema provided by a third party and having great difficulty in doing so!
One issue I'm having is their envelope is sent using:
xmlns:soapenv="http://www.w3.org/2001/12/soap-envelope"
I get a "soap:VersionMismatch" error.
Sent using the following works fine:
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
OR
xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"
Q: How can I create the web service/configure it to accept their soap envelope? Is that an older standard?