XML processing of CDATA
I have a DOM document whose nodes have CDATA sections for code templates, when I write the document to a file, I'm cast the DOM document to an (XmlDocument) and call its write method. This all worked find in the JAXP1.1 early edition, we've just got around to installing the final version of JAXP1.1. Now the CDATA sections are not being parsed correctly, it appears that when the file is written text nodes are being inserted into the file, these text nodes consist of just a \n character. Now I could simply and programmatically get around this, but where and why are the extra text nodes coming from, all I can think of is it must have something to do with the way the file gets written out?
Any help on this would be great....
Rick

