https://issues.apache.org/bugzilla/show_bug.cgi?id=50720
Konstantin Kolinko <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version| |All --- Comment #1 from Konstantin Kolinko <[email protected]> 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: [email protected] For additional commands, e-mail: [email protected]
