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=24278>.
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=24278

Incorrect SAXException about bad integral value of a character to be written out.

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[EMAIL PROTECTED]
           Severity|Normal                      |Blocker
           Priority|Other                       |High



------- Additional Comments From [EMAIL PROTECTED]  2004-03-15 20:02 -------
Well, here it is:
If you need more information, please let me know. In the meantime I need to
stick with patched 2.5.2 for httpd-docs.

xalan call from command line:

java -jar /path/to/xalan.jar -IN test.xml -XSL test.xsl -OUT test.html


test.html (result):
<?xml version="1.0" encoding="KOI8-R"?>
<foo>Andr?</foo>

(yes, really a question mark)


test.xsl:
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
              xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output
  method="xml"
  encoding="KOI8-R"
  indent="no"
/>

<xsl:template match="/">
    <foo>Andr&#233;</foo>
</xsl:template>

</xsl:stylesheet>


test.xml:
<root />

Reply via email to