[xmljs-users] Parsing dynamic XML recursively
Brought to you by:
djoham,
witchhunter
From: James W. <swi...@ho...> - 2005-08-05 16:36:46
|
I could not find an answer in the archives ... I would think (hope) there is a simple solution. I have a dynamically generated XML document that containts a data grid. It looks like this: ... <datarow> <data>45.567</data> <data>33.552</data> </datarow> <datarow> <data>67.132</data> <data>45.297</data> </datarow> ... How can I iterate through the XML, reading each row, and then each cell? I started off by searching for a command along the lines of getNextNode/getNextChildNode, etc., but I am stumped on how to do this. All the examples seem to point to specific (known) nodes, and unique nodes at that. Any help is appreciated. -J |