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=5638>. 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=5638 namespace in stylesheet causes TransformerConfigurationException ------- Additional Comments From [EMAIL PROTECTED] 2002-06-14 21:46 ------- Is it really the bad URI? I think it's the relativity which upsets xalan. Luuk at the following two files: relativens.xml: 3 lines <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="relativens.xsl" type="text/xsl"?> <r xmlns="../relative">Relatively namespaced</r> relativens.xsl: 7 lines <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:rel="../relative"> <xsl:template match="rel:r"> (<xsl:apply-templates select="rel:r"/>) </xsl:template> </xsl:stylesheet> >From this I get (using xalan-j 2.3.1 on Sun's SDK 1.3 on a Sun) Line 4; Column 40; XSLT Error (javax.xml.transform.TransformerConfigurationException): javax.xml.transform.TransformerException: javax.xml.transform.TransformerException: Extra illegal tokens: '../relative', ':', 'r' MSXML shows different behaviour and produces the "expected" ()
