Hi,

I am trying to read the elements of a xml document that is in the following format:

Code:
<File>
<Element1></Element1>
<Element2></Element2>
<Item>
   <Field1></Field1>
   <Field2></Field2>
   <Field3></Field3>
</Item>
<Item>
   <Field1></Field1>
   <Field2></Field2>
   <Field3></Field3>
</Item>
.
.
.
.
</File>
I experimented with different pieces of code but I was not able to read all of the elements.

Thanks