I've been through post after post after post for the last few hours trying to figure this out... im new to the XML parsing stuff so I am starting to get frustrated. Here is a sample of the XMl im trying to parse:
<level id="1">
<prop n="PROPERTY" v="VALUE"/>
</level>
<level id="2">
<prop n="PROPERTY" v="VALUE"/>
</level>
I need to be able to decend in to id=1 and id=2 on demand and retrieve property name PROPERTY with its corresponding value VALUE. Can someone point me in the right direction?