I am using the xslt 2.0 for the transformation. I want to transform the bellow line.
<ResultInfo><![CDATA[Concurrent processing error! <> & Test.]]></ResultInfo>
I am using the bellow transformation logic for this,
<xsl:template match="ResultInfo">
<xsl:element name="ltc:{local-name()}">
<xsl:value-of select="normalize-space(.)"/>
</xsl:element>
</xsl:template>
when I run this logic I am getting the bellow output,
<ltc:ResultInfo>Concurrent processing error! <> & Test.</ltc:ResultInfo>
But I want to transfer as it is with the "CDATA". Please suggest me how can I preserve the "CDATA".