XMLConfiguration.save() - illegal new line char in xml comment
--------------------------------------------------------------
Key: CONFIGURATION-238
URL: http://issues.apache.org/jira/browse/CONFIGURATION-238
Project: Commons Configuration
Issue Type: Bug
Affects Versions: 1.2 Final
Environment: Windows XP x64
Reporter: Janusz Studzizba
I have the following conf.xml.
<?xml version="1.0" encoding="UTF-8"?>
<report-server-config>
<!-- comment
new line in comment -->
<param>value</param>
</report-server-config>
Edited with Vim looks nice.
I use XMLConfiguration to process it.
I perform the following operations:
XMLConfiguration config = new XMLConfiguration("c:\\conf.xml");
config.save();
BUG:
After config.save(); my conf.xml file, when edited in Vim, contains additional
^M char at the end of each line. This is very disturbing.
REASON:
There must be a bug in XMLConfiguration when operating on <!-- --> xml comments
which contain new line characters - as in my example.
<!-- comment
new line in comment -->
My original conf.xml contained 0D 0A chars as a new line in comment,
after calling config.save(); there is ONLY 0A char there!
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]