I am trying to set up the parse rules for an xml entry of the following
type:
<Root>
<subSection>
<id>7</id>
<Item Name="forProperty" Type="String">This is the
Content</Item>
<Item Name="forAnotherProperty" Type="String">More
Content</Item>
</subSection>
</Root>
I want to achieve the equivalent of SubSection.setForProperty
with the value "This is the Content" and
SubSection.setAnotherProperty with "More Content".
How do I do this? Thanks.
