Â
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.
Â
Microsoft’s XML Parser (MSXML) displayed an error named 0xC00CE00A
Â
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