I need help in removing parent nodes from below given XML using XSLT..
<?xml version="1.0" encoding="UTF-8"?>
<Report xmlns="OpenProblems2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="OpenProblems2" Name="OpenProblems2">
<Hello>
<NewDataSet>
<Table>
<a>1832874</a>
<b>HUME-9063</b>
<c>not informed</c>
</Table>
<Table>
<a>1832874</a>
<b>HUME-9063</b>
<c>not informed</c>
</Table>
</NewDataSet>
</Hello>
</Report>
Output should look like -
<NewDataSet>
<Table>
<a>1832874</a>
<b>HUME-9063</b>
<c>not informed</c>
</Table>
<Table>
<a>1832874</a>
<b>HUME-9063</b>
<c>not informed</c>
</Table>
</NewDataSet>
XSLT should remove Report,Hello & NewDataset elements. please... your help will be highly appreciated.