Hello, I have a problem with xalan. I want to generate a .html file. I have a xml and xsl files, foo.xml and foo.xsl (these are from the examples of xalan). When I execute the jsp file, one error is produced, the error is that "the namespace is not valid" (more or less) Anything can help me! Thanks _________________________________________________________________ MSN. Más Útil cada Día. http://www.msn.es/intmap/
<?xml version="1.0"?> <doc>Hello</doc>
<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:param name="param1" select="'default value'"/> <xsl:template match="doc"> <html> <head><title>Stylesheet parameter</title></head> <body> <h2>XML source</h2> <p><xsl:value-of select="."/></p> <h2>Stylesheet parameter</h2> <p>The param1 stylesheet parameter has been set to <xsl:value-of select="$param1"/>.</p> </body> </html> </xsl:template> </xsl:stylesheet>
jspSample.jsp
Description: Binary data
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>