Suppose I have the following in an XML file: <DATA> <FTPSITE server="ftp.siteA.com" directory="/usr/WebSphere"> <USER> <USERNAME>kilgore</USERNAME> <SIZE>5000</SIZE> </USER> <USER> <USERNAME>lary</USERNAME> <SIZE>3000</SIZE> </USER> <USER> <USERNAME>Ming</USERNAME> <SIZE>12000</SIZE> </USER> </FTPSITE> <FTPSITE server="ftp.siteB.com" directory="/home/db2inst1"> <USER> <USERNAME>kilgore</USERNAME> <SIZE>10000</SIZE> </USER> <USER> <USERNAME>harry johnson</USERNAME> <SIZE>6000</SIZE> </USER> <USER> <USERNAME>Ming</USERNAME> <SIZE>22000</SIZE> </USER> </FTPSITE> </DATA> What I want to do using an XSL stylesheet is to output a table where every user is sorted by size. If a USERNAME occurs in different FTPSITEs, then add the SIZEs together. So the results should be: Ming 34000 kilgore 15000 harry johnson 6000 lary 3000 Any ideas?
Holger Prause
Ranch Hand
Joined: Oct 09, 2000
Posts: 47
posted
0
Hi, you can try this but it isnt tested.I still have problems with matching nodes so i dont know if this works