W
Wes Gamble
Apparently there was an overhaul of REXML formatting between Ruby 1.8.4
and 1.8.6.
The new formatting of XML that I'm generating with REXML is not being
consumed correctly by the consumer anymore.
Elements containing values were written out like this in 1.8.4:
<concurrency>1008</concurrency>
Now they are written out like this:
<concurrency>
1008
</concurrency>
How can I get the old behavior back? I see some mention of formatters -
so any hints on a good reference for how to use the formatters would be
welcome.
Thanks,
Wes
and 1.8.6.
The new formatting of XML that I'm generating with REXML is not being
consumed correctly by the consumer anymore.
Elements containing values were written out like this in 1.8.4:
<concurrency>1008</concurrency>
Now they are written out like this:
<concurrency>
1008
</concurrency>
How can I get the old behavior back? I see some mention of formatters -
so any hints on a good reference for how to use the formatters would be
welcome.
Thanks,
Wes