How to Iterate through the Nodelist, parse each Node and process it
586791Aug 8 2007 — edited Aug 11 2007Hi,
I am using Oracle BPEL and at a particular place I am getting a Nodes List. eg.
<stataus>
....
....
</stataus>
<stataus>
....
....
</stataus>
....
....
<stataus>
....
....
</stataus>
I want to loop through this status nodes list and extract each status Nodes and process them.
I thought of using XSLT templte but was not sure if I can use index(specify i) to get the ith Node out of the Node list
e.g.
<ns0:marketRunID>
<xsl:value-of select="/m:MarketStatus/m:MarketRun/m:marketRunID"/>
</ns0:marketRunID>
I am not sure which XML tech is best suited for parsing out individual status. I will not be able to use any Programming language like Java or .net for it.
Thanks