If I have 2 lists with different nodes, but some of them have the same name, how do I make a third list which contains all the nodes from the first 2 lists but does not have 2 elements with the same name?
So, in this case if I have list1 with the nodes from SWP and list2 with the nodes from APP, how do I make list 3 which contains only the nodes P0, P1 and P3?
You could try using "//P0" "//P1" this should help u pick up all the P0 and P1 elements, and then for-each through all of them....forming ur third list.....
Bookmarks