VTD-XML how to handle one-many relationship with in xpath

148 Views Asked by At

Facing an issue while using VTD-XML to parse the xml using large xpath which has,

1) one - many relationship with xml elements with in a single xpath for example,

<group>       
<element>
  <model>
    <product>BMW
      <feature>
      </feature>
    </product>
  </model>

   <model>
      <product>FORD
         <feature>
      </feature>

      </product>
  </model> 

  <model>
  </model> 

</element>
<groups>

issue is, am using multiple autoPilots to break the one-many relationship. howver the underlying naigator is same. some times i am not getting all the elements.

0

There are 0 best solutions below