SOAP Example
DevelopingPOST
http://www.dneonline.com/calculator.asmxWebService Usage Tips
:::info
Apidog needs to be upgraded to version 2.1.31
or higher.
:::
- Manually set the Header
Content-Type
value totext/xml; charset=utf-8
orapplication/soap+xml
(depending on the actual situation). - Set the Body format to
xml
. - The format of the returned response content is
XML
.
Request
Header Params
Content-Type
string
optional
Example:
text/xml
Body Params application/xml
object {0}
Example
<?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>
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
object {0}
Example
{}
Last modified: 2 months ago