Microsoft’s XML Parser (MSXML) displayed an error named 0xC00CE00A

Asked By 60 points N/A Posted on -
qa-featured

 

Hello,

When working with SVG 1.1 my Microsoft’s XML Parser (MSXML) displayed an error named 0xC00CE00A. I tried for a solution in the help tab but there was no such option. Can you provide me any information for the solution of this problem?

Thanks.

 

SHARE
Answered By 5 points N/A #138842

Microsoft’s XML Parser (MSXML) displayed an error named 0xC00CE00A

qa-featured

 

Dear Barnett,
It seems that your problem occurs because “Parameter entity must be defined before it is used”. To avoid this error, add entity MSXML-should-ignore-this file book.xml. An example of code is given below-

"<?xml version="1.0" encoding="utf-8"?>"

"<!DOCTYPE book SYSTEM "book.dtd" [

"<!ENTITY % MSXML-should-ignore-this "">

]><book>

</book>"

It should relieve you from your problem. For further information you can visit the following link:

https://bytes.com/topic/net/answers/86512-svg-xml

Related Questions