I have an xml file as such:
element
element1
element1
element
Now: element1 can have text, or/and either/both of the two elements element2 element3 so the xml file could be
<element>
<element1>
hi hello etc
</element1>
</element>
or
<element>
<element1>
hi hello etc
<element2>
how are you
</element2>
<element3>
fine
</element3>
</element1>
</element>
I am successfull in parsing it when it is as in the above examples. i can access the nodes by their tags and get the content out of it. problem arises , when the xml is of the following form:
<element>
<element1>
<element2>
how are you
</element2>
</element1>
</element>
I have a loop, that goes through the xml document and checks for the tags element1,element2,element3 and get the contecnt. for the above example i get an acception and the loops terminates. because when it reaches element1, it doesnt get a content,instead there ia another element. please help me solve this problem thanks