Re: Deserialize case sensitive

Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance



Actually xslt might be able to do this quite easily...

<xsl:template match="data|DATA">
<DATA><xsl:apply-templates select="*"/></DATA>
</xsl:template>
<xsl:template match="code|CODE">
<code><xsl:value-of select="."/></code>
</xsl:template>

etc; depends on the real complexity, of course...

Marc


.