2.1.31
Content-Type
text/xml; charset=utf-8
application/soap+xml
xml
XML
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Add xmlns="http://tempuri.org/"> <intA>5</intA> <intB>7</intB> </Add> </soap:Body> </soap:Envelope>
curl --location --request POST 'http://www.dneonline.com/calculator.asmx' \ --header 'Content-Type: text/xml' \ --data-raw '<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <Add xmlns="http://tempuri.org/"> <intA>5</intA> <intB>7</intB> </Add> </soap:Body> </soap:Envelope>'
{}