Subject: Retaining XML output
From: "Yashdeep Patil" <yashdeep@xxxxxxxxxxx>
Date: Wed, 7 Apr 2004 17:05:30 +0530
|
Hi,
My XML looks like
<x>
<y y1="somexml"><![CDATA[<queries><abc>123</abc></queries>]]></y>
</x>
and my xsl snippet is
<xsl:value-of select="y[@y1='somexml']"/>
Now, when I run it through a transformation, I get an output without the
markup:
<queries><abc>123</abc></queries>
I would like to retain the markup in the output
(<queries><abc>123</abc></queries>).
Is there any way to achieve this using a xalan/xerces parser.
Thanks,
Yashdeep Patil.
|