Hey all,
Can someone be kind enough to explain me why
xPath.evaluate("/MEMBER_LIST/MEMBER[1]/ADDRESS", nodeMemberList, XPathConstants.STRING)
Returns the value I'm looking for and why
xPath.evaluate("/MEMBER_LIST/MEMBER[" + i + "]/ADDRESS", nodeMemberList, XPathConstants.STRING)
Returns an empty String?
I have to do these in a for loop so here "i" is an int representing the current entry.