Below is the xml input:
<?xml version="1.0" encoding="utf-8"?>
<Message>Hello</Message>
I am serializing above xml using dp:serialize element like below
<xsl:template match="/">
<xsl:variable name="input">
<dp:serialize select="/" omit-xml-decl="yes"/>
</xsl:variable>
</xsl:template>
Now I want to deserialize the same data inside anoter xslt.How to proceed with this.