Hi,
Sorry about the confusion.
I need some lines from xml1 and xml2 to be combined in one output html.
Eg.
xml1.xml
<?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>
xml2.xml
<?xml version="1.0"?>
<tender-line-item>
<tender-code>CASH</tender-code>
<line-item-amt>24.94</line-item-amt>
<line-item-seq-no>2</line-item-seq-no>
<type-code>TN</type-code>
</tender-line-item>
My output html should have all the lines from both xml1.xml and xml2.xml.
I will be using two different xsls.
Is there any better approach for the same, kindly clarify.