Content-Type
application/soap+xml; charset=utf-8
http://www.w3.org/2003/05/soap-envelope
https://www.dataaccess.com/webservicesserver/NumberConversion.wso?WSDL
<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <NumberToDollars xmlns="http://www.dataaccess.com/webservicesserver/"> <dNum>123.45</dNum> </NumberToDollars> </soap12:Body> </soap12:Envelope>
curl --location 'https://www.dataaccess.com/webservicesserver/NumberConversion.wso' \ --header 'Content-Type: application/soap+xml; charset=utf-8' \ --data '<?xml version="1.0" encoding="utf-8"?> <soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> <soap12:Body> <NumberToDollars xmlns="http://www.dataaccess.com/webservicesserver/"> <dNum>123.45</dNum> </NumberToDollars> </soap12:Body> </soap12:Envelope>'
<?xml version="1.0" encoding="UTF-8"?> <soap:Envelope> <soap:Body> <m:NumberToDollarsResponse> <m:NumberToDollarsResult>string</m:NumberToDollarsResult> </m:NumberToDollarsResponse> </soap:Body> </soap:Envelope>