01-24-2022 11:39 PM
Hi, I have requirement to create a simple SOAP web service in snaplogic designer and expose the pipeline to external (eg:- Postman).
Which Snaps that I can use in the pipeline in order to receive the value from Postman?
Any suggestion or sample pipeline that I can use is appreciated.
Thanks in advance
01-30-2022 04:06 PM
Hi,
Good day, or you can uses the xml generator snap if you want some dynamic/custom xml. The XML generator supports velocity template
~EmEm
01-27-2022 04:37 AM
01-27-2022 06:21 PM
@Spiro_Taleski May I know how the structure of the XML payload looks like? I have tested the sample pipeline, but getting error.
01-28-2022 01:04 AM
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:cus="urn:ws.solvedirect.com/webservices/custom"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<HelloWorldReq>
<FileName>TestFile</FileName>
<Status>Fail</Status>
</HelloWorldReq>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>