You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-users@xerces.apache.org by "Schlesinger, Philip" <ps...@filenet.com> on 2006/06/21 20:44:55 UTC

DOMTypeInfo test at line 854was not carried out

Hi all.  The sanityTest.pl script turned out ok except for this:

DOMTypeInfo test at line 854was not carried out
DOMTypeInfo test at line 888was not carried out
DOMTypeInfo test at line 912was not carried out
DOMTypeInfo test at line 937was not carried out
DOMTypeInfo test at line 961was not carried out

Ideas?

- Phil


Re: DOMTypeInfo test at line 854was not carried out

Posted by Alberto Massari <am...@datadirect.com>.
At 11.44 21/06/2006 -0700, Schlesinger, Philip wrote:
>Hi all.  The sanityTest.pl script turned out ok except for this:
>
>DOMTypeInfo test at line 854was not carried out
>DOMTypeInfo test at line 888was not carried out
>DOMTypeInfo test at line 912was not carried out
>DOMTypeInfo test at line 937was not carried out
>DOMTypeInfo test at line 961was not carried out
>
>Ideas?

These errors are reported if the parsing of the document failed (but 
without fatal errors).
Do the other tests succeed?
In particular, given that one failure is:

         ti.parser = new XercesDOMParser;
         ti.parser->setValidationScheme(XercesDOMParser::Val_Auto);
         ti.parser->setCreateSchemaInfo(true);
         ti.parser->setDoNamespaces(true);
         ti.parser->setDoSchema(true);
         ti.parser->parse("data/TypeInfo.xml");
         ti.doc = ti.parser->getDocument();

can you try running

   DOMPrint -n -s <XercesDir>/tests/DOM/TypeInfo/data/TypeInfo.xml

?

Thanks,
Alberto