Hi, we are building our first xmlBeans based xml project. It is discovered that even if we put
<xs:restriction base="xs:string">
<xs:whiteSpace value="preserve"/>
</xs:restriction>
in the schema, the xml parser is still going to replace "\n" chars with spaces
in our string elements. We need those new lines. We use the following code:
XMLDoc = XMLProjectDocument.Factory.parse(file);
We appreciate very much if some one could point to a solution or a work around
thanks

