Hi,
This may be ridiculously simple. I've been working with the same schema for years and it's fairly flat, but I'm on a new project where simple attributes are inherited in the schema all over the place. If I want to just get the description for each individual object without knowing the full path to it, how would I do that?
Example xml:
<test>
<activity>
<individual>
<name>Test1</name>
<description>this is description</description>
</individual>
</activity>
<activity>
<thing>
<action>
<name>Test2</name>
<description>this is description2</description>
</action>
</thing>
</activity>
<activity>
<test>
<individual>
<thing>
<name>Test3</name>
<description>this is description3</description>
</thing>
</individual>
</test>
</activity>
</test>
Bookmarks