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

HTMLEntities.res not found





------- Additional Comments From [EMAIL PROTECTED]  2001-09-25 12:46 -------
I ran into this too and found that the line from your example

Serializer serializer=SerializerFactory.getSerializer(
                        OutputProperties.getDefaultMethodProperties("html")
                );

seems to cause HTMLEntites.res from the default props to be reloaded as user 
spec'd props as if in stylesheet.  It is loads fine in default context then 
try's again and fails in user context.  I any event the interpretation 
mechanics are different if from default vs user.

using StreamResult and letting Xalan worry about setting up serializer seems to 
work fine

        Result result = 
            new javax.xml.transform.stream.StreamResult(
                new FileOutputStream("foo.out"));
        handler.setResult(result);

        // Parse the XML input document.
        reader.parse(source);

Reply via email to