xslt to xml to xml
<Root>
<tstEle name="sss"/>
<child type="aa" />
<child type="zz"/>
</Root>
I need to write xsl file to translate into as follows
<Root>
<tstEle name="sss"/>
<child type="abc:solid" />
<child type="def:solid"/>
</Root>
Please help me in writing.
|