Wiki

Clone wiki

devoops / SOAP Webservices

https://www.w3.org/TR/soap/

SOAP 1.1

curl -v -X POST \
 --header 'Content-Type: text/xml; charset="utf-8"' \
 --header 'SOAPAction: <SOAPACTION>' \
 --data <DATA> \
 <URL>

where <DATA> is:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
  <env:Header>
  </env:Header>
  <env:Body>
  </env:Body>
</env:Envelope>

SOAP 1.2

curl -v -X POST \
 --header 'Content-Type: application/soap+xml; charset="utf-8"' \
 --data <DATA> \
 <URL>

where <DATA> is:

<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
  </soap12:Header>
  <soap12:Body>
  </soap12:Body>
</soap12:Envelope>

Updated