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!

Removing namespace from xml created

shantanu srivastavaSep 19 2008 — edited Sep 2 2010
Hi,
I am writing a xml file using file adapter.
My requirement was to remove all the namespace from the xml file before writing it using file adapter.
I solved this problem using xslt code & got the below shown output xml:

<?xml version="1.0" ?>
<Order xmlns="http://ProblemIsStillProblem.com">
<Header>
<Origin>
<Originating_System>ToW
</Originating_System>
<User_Id>MVNO_BEGA
</User_Id>
</Origin>
<Priority>4
</Priority>
.
.
.
</Order>

What I require more is to remove this xmlns="http://ProblemIsStillProblem.com" from order.
ie I require something like shown below:

<?xml version="1.0" ?>
<Order>
<Header>
<Origin>
<Originating_System>ToW
</Originating_System>
<User_Id>MVNO_BEGA
</User_Id>
</Origin>
<Priority>4
</Priority>
.
.
.
</Order>

I request you to please provide a way to handle this issue in bpel.

Thanks in advance for your valuable response & time.

Thanks & Regards,
Shanty
This post has been answered by 640152 on Sep 23 2008
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 30 2010
Added on Sep 19 2008
10 comments
13,867 views