This is a newbie question. Inside my XML file, I want to have multiple child nodes nested in a parent node. But when I try to trace out the multiple child nodes, I only get the first child node in the trace, despite using “@” wildcard. Is it because the childnodes are named the same?
<gallery>
<project>
<desc>Description</desc>
<image thumb="thumb01.jpg" full="full01.jpg"/>
<image thumb="thumb02.jpg" full="full02.jpg"/>
</project>
</gallery>