in reply to Re: parsing reserved chars with xml::simple
in thread parsing reserved chars with xml::simple

You should also test XML against a DTD or XML Schema. This will immediately validate the XML content before it is sucked in by your app. Working in this way ensures that you spend your app programming time solving the problem rather than error handling badly formed XML.

See this article introducing XML Schema.

  • Comment on Re: Re: parsing reserved chars with xml::simple