Hello all,
I have a SOAP XML file that I need to remove the SOAP elements at response time.
What I have at the top is:
And at the bottom of the XML file:
When I receive the response from the webservice - is there a way to delete these elements automatically?
Thanks in advanced
daveofgv
I have a SOAP XML file that I need to remove the SOAP elements at response time.
What I have at the top is:
Code:
?
<soap:Header>
?
<wsa:Action>
xxxxxxx
</wsa:Action>
<wsa:MessageID>xxxxxxxx</wsa:MessageID>
<wsa:RelatesTo>xxxxxxxx</wsa:RelatesTo>
?
<wsa:To>
[URL unfurl="true"]http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous[/URL]
</wsa:To>
?
<wsse:Security>
?
<wsu:Timestamp wsu:Id="Timestamp-4ecfb9d8-1095-48b9-8a60-7aa0838d70a8">
<wsu:Created>2010-03-31T21:00:40Z</wsu:Created>
<wsu:Expires>2010-03-31T21:05:40Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</soap:Header>
?
<soap:Body>
And at the bottom of the XML file:
Code:
</soap:Body>
</soap:Envelope>
When I receive the response from the webservice - is there a way to delete these elements automatically?
Thanks in advanced
daveofgv