Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Need to replace a tag in Request XML in OSB

pritamightyMar 20 2013 — edited Mar 26 2013
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
This post has been answered by FabioDouek on Mar 26 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 23 2013
Added on Mar 20 2013
13 comments
2,095 views