Home > Net >  Sending a SOAP request using Postman
Sending a SOAP request using Postman

Time:09-09

I'm trying to send a SOAP request to the Loqate services following their API documentation found enter image description here

How can I make a SOAP request to this API? What am I missing?

CodePudding user response:

That's not the service endpoint, it's an address where you can get the WSDL. Inside that WSDL you will find the service endpoint:

<soap:address location="http://services.postcodeanywhere.co.uk/Capture/Interactive/Find/v1.10/soapnew.ws"/>

Send your request there. The endpoint is over http, but the https seems to be working on the same address: https://services.postcodeanywhere.co.uk/Capture/Interactive/Find/v1.10/soapnew.ws

One other thing. If you want a more specific client than Postman, you could try SoapUI.

  • Related