in reply to xml::libxml open, add and save not formatting properly
As a side note, not related to your question.
I have a config xml file that I actually created with the xml lib so I know it's valid ;-)
You probably mean "well-formed", "valid" means something else in XML context:P
Out of curiosity, why do you use CDATA? If I go through your example data I see no reason to use it. The CDATA mechanism was thought up to let you quote fragments of text containing markup characters. But it doesn't really work that well. One of the biggest strengths of XML is the data validation capability (I'm thinking XMLSchema here). Putting stuff in like CDATA, by definition ignored by the parser, doesn't help in that respect.
Cheers
Harry
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: xml::libxml open, add and save not formatting properly
by ikegami (Patriarch) on Mar 24, 2010 at 18:02 UTC | |
|
Re^2: xml::libxml open, add and save not formatting properly
by itsscott (Sexton) on Mar 24, 2010 at 17:32 UTC | |
by ikegami (Patriarch) on Mar 24, 2010 at 18:08 UTC |