[xsd-users] A Question about Unicode Character
Boris Kolpackov
boris at codesynthesis.com
Tue Apr 15 04:51:09 EDT 2008
Hi,
lvkun <lvkun2006 at gmail.com> writes:
> But When I remove the flag(xml_schema::flags::no_xml_declaration), it still
> throw out the exception:
> instance document parsing failed
Try to catch and print the exception:
try
{
// parsing function call goes here
}
catch (const xml_schema::exception& e)
{
wcerr << e << endl;
}
This will give you more information on what's going on.
Boris
More information about the xsd-users
mailing list