Removing namespace from xml created
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