in reply to Re: How to parse the XML file as per different schema
in thread How to parse the XML file as per different schema

Well I would need to parse different XML files with quite a bit different schemas like
xml 1
<student>
<name>denz</name>
<section>B</section>
<subject>CHEM</subject>
</student>
xml 2
<student>
<name>denz</name>
<marks>40</marks>
<university>LONDON</university>
</student>
so now I want to use one unique program which should parse
any file with a different schema. Can we do this?
  • Comment on Re^2: How to parse the XML file as per different schema