SOAP to XML in apigee

Is there a way to convert SOAP response to XML ?

Eg:

From

<?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> </soap:Header> <soapenv:Body> <ns1:abc xmlns:ns1="http://abc.xxx.com"> <ns1:a>0</ns1:a> <ns1:b>test</ns1:b> </ns1:abc> </soapenv:Body> </soapenv:Envelope>

to

<abc> <a>0</a> <b>test</b> </abc>

1 1 1,352
1 REPLY 1

Not applicable

Hi Vinay,

It is possible to transform SOAP to XML using XSLT via the "XSL Transform Policy".

Please refer to:

http://docs.apigee.com/api-services/reference/xsl-transform-policy

Additionally, searching the web for a topic such as "SOAP to XML with XSLT" should yield some examples.

Cheers