Compose SOAP requests
Updated on Mar 12, 2026
Environment
| Product | Fiddler Everywhere |
| Operating System | Windows, macOS, Linux |
Description
How to make a SOAP request in Fiddler Everywhere?
Solution
- Open the Composer.
- Select POST from the request HTTP methods drop-down menu.
- Enter the SOAP request endpoint. For example:
sh
http://www.dneonline.com/calculator.asmx
- Add the SOAP body.
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>
<Divide xmlns="http://tempuri.org/">
<intA>42</intA>
<intB>2</intB>
</Divide>
</soap:Body>
</soap:Envelope>
- Add the required headers. By default, the Fiddler's Composer automatically adds the Content-Type header with value text/xml. Change this header with the appropriate value as requested by the SOAP endpoint.
- Click Execute to send your SOAP request. That's it!