Question
P3Fusion
IN
Last activity: 17 Mar 2025 14:22 EDT
How to Pass Connect-SOAP Body content type as text/xml
Hello Everyone,
I'm using Connect-SOAP, to communicate with external system. System is expecting the request payload in string instead of application/xml.
How can we configure the below xml as same pattern from pega.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://example.com/">
<soapenv:Header/>
<soapenv:Body>
<web:YourRequest>
<web:xmlString><root><child>Value</child></root></web:xmlString>
</web:YourRequest>
</soapenv:Body>
</soapenv:Envelope>