Hi I am trying to modify a XML request payload sample below. remove xml few tags here.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header>
<Bodytest12e/>
</soapenv:Header>
<soapenv:Body>
<Bodytest>data</Bodytest>
<Bodytest1>data1</Bodytest1>
</soapenv:Body>
</soapenv:Envelope>
I want to remove the soap header XML tag completely soapenv:Header </soapenv:Header> and just read the SOAP body in the request payload so when I apply xmltojson the conversion is proper. Appreciate your help.