S
Sanjib Biswas
Hi All,
I am looking for XML merging for the following scenarios. I want to load both the input files and show in the tree viewer and highlight the differences. Now its up to the user to select the correct node. Any non conflicting differences should be automatically merge onto the merge document. Any suggestion/caveats on how to do this in VB.Net?
Regards
Sanjib
doc1.xml |doc2.xml
======== |========
<data> |<data>
<product> | <product>
<title>MS Access</title> | <title>MS Access Suite</title>
<price>350.00</price> | <price>350.00</price>
</product> | </product>
<product> | <product>
<title>MS Outlook</title> | <title>MS Outlook</title>
<price>300.00</price> | <price>250.00</price>
</product> | </product>
<product> | <product>
<title>MS Office</title> | <title>MS Office</title>
<price>450.00</price> | <price>450.00</price>
</product> | </product>
</data> | <product>
| <title>MS Visual ..Net</title>
| <price>310.00</price>
| </product>
|</data>
merge.xml
=========
<data>
<product>
<title>select the title name based on the decision</title>
<price>350.00</price>
</product>
<product>
<title>MS Outlook</title>
<price>select the price based on the decision</price>
</product>
<product>
<title>MS Office</title>
<price>450.00</price>
</product>
<product>
<title>MS Visual .Net</title>
<price>310.00</price>
</product>
</data>
I am looking for XML merging for the following scenarios. I want to load both the input files and show in the tree viewer and highlight the differences. Now its up to the user to select the correct node. Any non conflicting differences should be automatically merge onto the merge document. Any suggestion/caveats on how to do this in VB.Net?
Regards
Sanjib
doc1.xml |doc2.xml
======== |========
<data> |<data>
<product> | <product>
<title>MS Access</title> | <title>MS Access Suite</title>
<price>350.00</price> | <price>350.00</price>
</product> | </product>
<product> | <product>
<title>MS Outlook</title> | <title>MS Outlook</title>
<price>300.00</price> | <price>250.00</price>
</product> | </product>
<product> | <product>
<title>MS Office</title> | <title>MS Office</title>
<price>450.00</price> | <price>450.00</price>
</product> | </product>
</data> | <product>
| <title>MS Visual ..Net</title>
| <price>310.00</price>
| </product>
|</data>
merge.xml
=========
<data>
<product>
<title>select the title name based on the decision</title>
<price>350.00</price>
</product>
<product>
<title>MS Outlook</title>
<price>select the price based on the decision</price>
</product>
<product>
<title>MS Office</title>
<price>450.00</price>
</product>
<product>
<title>MS Visual .Net</title>
<price>310.00</price>
</product>
</data>