AXIOMUtil.stringToOM doesn't work properly
------------------------------------------
Key: WSCOMMONS-345
URL: https://issues.apache.org/jira/browse/WSCOMMONS-345
Project: WS-Commons
Issue Type: Bug
Components: AXIOM
Reporter: Andreas Veithen
The AXIOMUtil.stringToOM(String) utility method doesn't work properly if the
XML fragment contains non ASCII characters and the platform default charset is
not UTF-8. Indeed, stringToOM relies on String#getBytes() which uses the
platform default charset. It then constructs a ByteArrayInputStream to pass the
fragment to the parser. However, the parser will use UTF-8 by default. Instead
of using a ByteArrayInputStream, stringToOM should use a StringReader.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.