Need to replace a tag in Request XML in OSB
I have my proxy service in OSB connected to MQ as the input provider. Now I want to take a couple of namespaces and copy them into the body and remove those tags.
Here is the input from MQ...
-------------------------------------------------------------------------------------------------------------------------------------
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v="http://www.w3.org/1999/XSL/Transform">
<soapenv:Header/>
<soapenv:Body>
<v:createAccount>
<partId>Mnhtd_21</partId>
</v:createAccount>
</soapenv:Body>
</soapenv:Envelope>
-------------------------------------------------------------------------------------------------------------------------------------
I want this request xml to be converted into the following xml before it can be routed to the Business Service...
-------------------------------------------------------------------------------------------------------------------------------------
<v:createAccount xmlns:v="http://www.w3.org/1999/XSL/Transform">
<partId>Mnhtd_21</partId>
</v:createAccount>
-------------------------------------------------------------------------------------------------------------------------------------
How can I transform it in the Proxy Service message flow?
Please Help.
Thanks in advance!
Edited by: 994962 on Mar 20, 2013 12:10 AM