Hi,
I have a SOAP call I’m trying to get working in Postman. From the documentation the SOAP action is no longer sent in it’s own header value, rather it’s sent with Content-Type: SOAP 1.2
When I make a POST call to the service it just hangs. Although the exact same payload in SOAP UI works perfectly.
Does anyone know how to get a SOAP 1.2 action working in POSTMAN?
Edit: looking more closely into it. The developer of this service has added their action value in double quotes eg:
Content-Type: application/soap+xml;charset=UTF-8;action=“http://example.com/action”
Does anyone know a way to escape the quotes in header values? I think the double quotes are causing the issue. I’ve tried a few things, but nothing worked.
Thanks