Hi,
i have a XSLT with this instruction
<xsl:template match="/html">
<html xmlns="http://www.w3.org/1999/xhtml">
<xsl:apply-templates select="@*|node()"/>
</html>
</xsl:template>
(i won't put the rest of the file so it's clearer)
Basicaly i want to read a HTML file, and output an exact HTML file, but with the namespace
http://www.w3.org/1999/xhtml
This works fine in Tomcat, but in Resin i get a NullPointerException, any clues ?
thank you