DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=29926>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=29926 SystemId Unknown; Line #-1; Column #-1; XSLT Error [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From [EMAIL PROTECTED] 2004-07-12 18:49 ------- The source of the problem is the following xsl:template tag. The xsl:template tag is an empty element tag, which is followed by an xsl:element. <xsl:template match="@*"/> <-- EMPTY ELEMENT TAG!! --> <xsl:element name="{local-name()}"><xsl:value-of select="."/></xsl:element> </xsl:template> The xsl:element is a top-level element, but XSLT does not permit that, so the error "xsl:element is not allowed in this position in the stylesheet" is reported. By the way, so far as I can tell, the Process command should point to the correct file, line and column. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
