FW: spaces in value fields

We've encountered a problem that we believe is due to our XML files having
spaces in the value fields.  Example:
<doubleValue>1.0</doubleValue> 
as opposed to:
<doubleValue>   1.0   </doubleValue> 
 
and
 
<dateValue>2000-03-31T13:20:00.000Z</dateValue> 
vs.
<dateValue> 2000-03-31T13:20:00.000Z </dateValue> 
 
The parser throws an exception because it thinks the data is invalid.  For
the above example it would think the data was actually: 
 
.0.0 
 
 for the doubleValue
 
and
 
000-03-31T13:20:00.000ZZ
 
for the date value
  
 
Note that it dropped the first character and added one to the end.  This is
consistent.
 
We have verified that we can parse data that previously caused an exception
by restarting the parse.  It just seems that after time the spaces
eventually cause an exception.
 
We are using Apache Xerces 1.4.3 on Win2k.
 
Are spaces valid in value fields?
 
 
 
Vignette is the leading provider of integrated content applications used by
the most successful organizations to interact online with their customers,
employees, and partners.

 

Received on Thursday, 20 September 2001 13:40:46 UTC