Retrive xml node value

Hi,

i got a problem in acessing data from xml file.

i need to get value of a node value by passing value of some other node value

its like retriving data from a corresponding table cell by help of value of other table cell value

the code of xml is like:

<table>

<tableHeader>

<tableHeaderCell name=" Stud Size"/>

<tableHeaderCell name=" Hardware"/>

<tableHeaderCell name=" Part Number"/>

</tableHeader>

<tableRow>

<tableCell>10-32</tableCell>

<tableCell>BACS12GU3K()</tableCell>

</tableRow>

<tableRow>

<tableCell>10-32</tableCell>

<tableCell>BACS12HN3-()</tableCell>

</tableRow>

</table>

<table>

<tableHeader>

<tableHeaderCell name=" Stud Size"/>

<tableHeaderCell name=" Structure Material"/>

<tableHeaderCell name=" Torque

(inch-pound) Minimum"/>

<tableHeaderCell name=" Torque

(inch-pound) Maximum"/>

</tableHeader>

<tableRow>

<tableCell>10-32</tableCell>

<tableCell>Aluminum</tableCell>

<tableCell>28</tableCell>

<tableCell>35</tableCell>

</tableRow>

I will have to pass value of tablecell(2) of first table and retrive tablecell(3) and(4)

of second table.

can anyone suggest a solution

thanx in advance

cln

[1796 byte] By [clna] at [2007-10-1 0:25:52]
# 1
To retrive tablecell(3) and(4)of second table value of tablecell(2) of first table is not required.Retrieve value with XPath expression:"table/tableRow/tableCell[3]"
dvohra09a at 2007-7-7 16:11:17 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...