DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23695>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=23695 Cannot use <xsl:element name="param"> ------- Additional Comments From [EMAIL PROTECTED] 2003-10-24 18:16 ------- Hi Jason, your sample XSL has this: <xsl:output method="html" /> and in this case Xalan will do its best to generate good html for you, and in this case you've had a collision with the html <param> tag. -------------------- Right now with method="html" the element <param> is thought to be the html <param> tag which supplies parameters for a containing <object> or <applet> tag. As such the <param> tag for html does not have an end tag so we can not have <param ... /> or <param ... ></param> In html we can only have <param ...> In this bug you say that the resulting XML is invalid, I think then that you should have this: <xsl:output method="xml" /> in order to generate output XML. Please try it with that output method. Regards, Brian Minchau
