I am consuming a SOAP WebService using SAP PI.
The webservice response returns a XML which contains a XML raw string. Something like this:
<WSResponse xmlns='http://example.com/' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<WSResult>
<ITEM><DESC>Example One</DESC></ITEM><ITEM><DESC>Example Two</DESC></ITEM>
</WSResult>
</WSResponse>
< > are the escaped characters <>
Now I want to use the graphical mapping to get the raw string and parse it to the PI XML Data Type like follows:
I have tried with replace functions and return as XML option...but I am not able to get the desired output.
EDIT: I am also trying with XSLT Mapping, but I am struggling too.
