DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=30598>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=30598

[configuration] Problem adding property XMLConfiguration

           Summary: [configuration] Problem adding property XMLConfiguration
           Product: Commons
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Configuration
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


CharacterData data = document.createTextNode((String) value); seems to be
adding array elements into one string versus multiple elements.  The XML
should look like:

 <test>
                <array>value1</array>
                <array>value2</array>
                <array>value3</array>
                <array>value4</array>
</test>

However, it looks like:
 <test>
         <array>value1value2value3value4</array>
</test>

The same basic problem occurs with this loop:
        // add an array of strings in an attribute
        for (int i = 1; i < 5; i++)
        {
            conf.addProperty("[EMAIL PROTECTED]", "value" + i);
        }

However, in this case, instead of add value1, value2, etc:
 <test>
                <attribute array="value1"/>
                <attribute array="value2"/>
                <attribute array="value3"/>
                <attribute array="value4"/>
</test>

we get just:
 <test>
                <attribute array="value4"/>
</test>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to