Hi,
I am doing one mapping the requirement is like
sourece:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:mta_sender xmlns:ns0="http://test">
<input>
<ID>123</ID>
<Name>Sri</Name>
</input>
<input>
<ID>567</ID>
<Name>Mr</Name>
</input>
</ns0:mta_sender>
and the target I need like
Terget:
<?xml version="1.0" encoding="UTF-8"?>
<ns1:mta_Receiver xmlns:ns0="http://test">
<ID>123</ID>
<Name>Sri</Name>
<ID>567</ID>
<Name>Mr</Name>
</ns1:mta_Receiver>
In the above shown I need to follow the order like ID,Name,ID,Name.
I created mapping, but the order is cominglike ID,ID,Name,Name..
Please helop in this..
Regards,
Kum