https://issues.apache.org/bugzilla/show_bug.cgi?id=50720
Konstantin Kolinko <knst.koli...@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version| |All --- Comment #1 from Konstantin Kolinko <knst.koli...@gmail.com> 2011-02-04 09:12:28 EST --- This is caused by the following line in o.a.j.compiler.WebXml.java: is = new ByteArrayInputStream(webXml.getBytes()); The above uses system encoding to convert MERGED_WEB_XML from String to byte[]. Actually InputStream is not needed there. One should use "new InputSource(Reader)". -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org