Covered in this article
Related pages
Latest Changelog
Version 1.2.11 ()
SOAP component

SOAP Triggers

SOAP component triggers.

Receive SOAP Request

A webhook trigger that receives SOAP requests and validates the message body against the provided WSDL.

Receive SOAP Request

Input Field Descriptions

  • WSDL URI - Publicly accessible URL of the WSDL.
  • Binding - Select one of the bindings described in the WSDL.
  • Operation - Select an operation available for the chosen binding.
  • Validation - If Enabled, the SOAP body is validated against the WSDL schema.

Example of usage

Configuration:

WSDL URI: http://www.dneonline.com/calculator.asmx?wsdl Operation: Add

Request Body:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <Add xmlns="http://tempuri.org/">
      <intA>10</intA>
      <intB>20</intB>
    </Add>
  </soap:Body>
</soap:Envelope>

Output:

{
  "Add": {
    "intA": 10,
    "intB": 20
  }
}

Click here to learn more about the elastic.io iPaaS