Compose SOAP requests

Updated on Dec 4, 2025

Environment

ProductFiddler Everywhere
Operating SystemWindows, macOS, Linux

Description

How to make a SOAP request in Fiddler Everywhere?

Solution

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!
In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support