SOAP Testing

Import a WSDL and SoapUI auto-generates all requests.

Import WSDL

text
File → New SOAP Project
Project Name: MyService
Initial WSDL: https://example.com/service?wsdl

SoapUI generates:
- Binding
- Operations (GetUser, CreateUser, DeleteUser)
- Sample requests with placeholder values

Sample SOAP envelope

xml
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
                  xmlns:ser="http://example.com/service">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:GetUser>
         <ser:userId>42</ser:userId>
      </ser:GetUser>
   </soapenv:Body>
</soapenv:Envelope>