Hi,
Am trying to convert a xml to a html using an xsl.
My xml is as follows:
<?xml version="1.0"?>
<SOURCE name="store">
<GROUP hidden="N" name="ReceiptStoreAddress">
<PARAMETER final="N" hidden="N" name="emailAddress" type="STRING">
<VALUE value="
[email protected]"/>
</PARAMETER>
</GROUP>
<GROUP hidden="N" name="MINOR">
<PARAMETER final="N" hidden="N" name="MINOR" type="STRING">
<VALUE value="RG:36000000000000:36999999999999"/>
</PARAMETER>
</GROUP>
</SOURCE>
In the above xml, i need to access the group with the name ReceiptStoreAddress, can anyone help me how to access this group alone.When i do this, my xsl should pull out the values for the group with name ReceiptStoreAddress only and not the one with the name MINOR.
Regards,
BP