You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by Remy Maucherat <re...@apache.org> on 2002/07/09 00:40:49 UTC

Last (?) Gump failure

It seems there's a last problem with Gump and the definition of the MX4J 
project, or something like it.
The JARs names are mx4j-jmx.jar and mx4j-tools.jar now, AFAIK.

Everything else looks good now (and we should finally have a Gump 
generated nightly) :)

Remy


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


[PATCH] Writer encoding in CompressionServletResponseWrapper

Posted by Anton Brazhnyk <a....@biconsulting.ws>.
Hi,

Applying compression filter to response with non-default character encoding will mess the output. 
The reason is CompressionServletResponseWrapper.getWriter() returns writer with system-default encoding. 
In my case response is UTF-8 and system-default encoding is ISO-something (Latin-1). I get bunch of '?' instead of Cyrillic characters.

Attached patch fixes the problem.

Regards, Anton