[
https://issues.apache.org/jira/browse/WICKET-5398?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sven Meier resolved WICKET-5398.
--------------------------------
Resolution: Fixed
Fix Version/s: 6.12.0
7.0.0
IMHO it's better to circumvent any encoding problem by using a StringReader
directly on the parsed String.
XmlPullParserTest makes sure detection of XML encoding still works.
> XmlPullParser fails to properly parse from String with encoding declaration
> ---------------------------------------------------------------------------
>
> Key: WICKET-5398
> URL: https://issues.apache.org/jira/browse/WICKET-5398
> Project: Wicket
> Issue Type: Bug
> Components: wicket
> Affects Versions: 7.0.0, 6.11.0
> Reporter: Sven Meier
> Assignee: Sven Meier
> Priority: Minor
> Fix For: 7.0.0, 6.12.0
>
>
> When parsing from a string, XmlPullParser fails if the encoding from the XML
> declaration is different than the system's file encoding.
> Examples:
> -Dfile.encoding=ISO-8859-1
> parser.parse("<?xml encoding='UTF-8' ?><span id='umlaut-äöü'></span>");
> -Dfile.encoding=UTF-8
> parser.parse("<?xml encoding='ISO-8859-1' ?><span
> id='umlaut-äöü'></span>");
> Both fail because the string is read with the system's file encoding while
> the parser expects the stream to be encoded in the declarated encoding.
--
This message was sent by Atlassian JIRA
(v6.1#6144)