Hi,
I have 2 different xml files like below which has the same namespace for elements but with different prefix.
When I gave ns1:Bill in the mapping it copied only 1 file.
When I tried with *:Bill it was not copying the data
Can you please let me know how should I give the mapping in this case?
File 1:
<?xml version="1.0" encoding="utf-8"?>
<ns1:Bill xmlns:ns1="http://schemas.company.com/bill/v1.0">;
<Transaction>
.....
</Transaction>
</ns1:Bill>
File 2:
<?xml version="1.0" encoding="utf-8"?>
<ns12:Bill xmlns:ns2="http://schemas.company.com/bill/v1.0">;
<Transaction>
.....
</Transaction>
</ns1:Bill>
Thanks in advance
Rajana D