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=13145>. 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=13145 stylesheet requires attribute: version [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Summary| stylesheet requires |stylesheet requires |attribute: version |attribute: version ------- Additional Comments From [EMAIL PROTECTED] 2002-09-30 17:28 ------- Using the wrong URI for the xsl: prefix will cause this message, and that's what you've done. URIs, and namespace URIs in particular, are case sensitive. You wanted "http://www.w3.org/1999/XSL/Transform"; you apparently typed it with "xsl" in lowercase. Fix that and let us know whether it helps. Other causes of this message: If you're using a DOM source, you must use the namespace-aware DOM creation methods (see bug 648). And if you're using a SAX source, it must be configured to output namespace declarations as attributes. (It can output begin/end prefix events too, but we won't currently use them).
