Forum Discussion
KarelHusa
3 years agoSuper Contributor
you need to make sure you fill the HTTP headers as expected by your server-side:
- Content-Type: specifying the type of data you send within the request body
- SOAPAction: the operation identification
An example is:
Content-Type: text/xml;charset=UTF-8
SOAPAction: "http://tempuri.org/IConnectPoint_Reservation/GetReservationsByNationalId"
The API tools may fill these headers differently, e.g. Postman using "application/xml" instead of "text/xml". ReadyAPI made the best job to match to your API here.
- dilawar3 years agoOccasional Contributor
SOAPAction: http://tempuri.org/IConnectPoint_Reservation/CreatePNR
Content-Type: text/xml;charset=UTF-8
I'm passing this soap action and content-type if National id is issue so why this is working on ready api but postman and SwaggerHub Explore issues facing.