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?