REST to SOAP
Examples of how to use Bi-direct to make REST API calls to a server that only supports SOAP requests.
Bi-Direct endpoint for REST to SOAP: https://tri-way.vercel.app/resttosoap
Example of a POST request
Normally this is how a soap request looks like
Host: www.dataaccess.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<NumberToWords xmlns="http://www.dataaccess.com/webservicesserver/">
<ubiNum>1234</ubiNum>
</NumberToWords>
</soap12:Body>
</soap12:Envelope>Example of a POST request made using Bi-Direct
Headers
Request Body (POST request)
Last updated