D
Derrick
I am opening xml files that refer to a DTD as follows:
<?xml version="1.0"?><!DOCTYPE terminology SYSTEM
"http://MyDomain.com/dtd/myApp.dtd">
When parsing, is there any way to get the parser to ignore the Doctype
element? I do not need to validate in my C# app. If there is a way to
validate against a DTD, that would be great, but it is not necessary right
now. In our Java app, which uses DTDs, we extend EntityResolver (think that
is the class..) and load a local dtd after parsing the dtd URI, the dtds are
not actually available over the web yet. I'm guessing XmlResolver is the c#
version of EntityResolver?
Thanks in advance!
Derrick
<?xml version="1.0"?><!DOCTYPE terminology SYSTEM
"http://MyDomain.com/dtd/myApp.dtd">
When parsing, is there any way to get the parser to ignore the Doctype
element? I do not need to validate in my C# app. If there is a way to
validate against a DTD, that would be great, but it is not necessary right
now. In our Java app, which uses DTDs, we extend EntityResolver (think that
is the class..) and load a local dtd after parsing the dtd URI, the dtds are
not actually available over the web yet. I'm guessing XmlResolver is the c#
version of EntityResolver?
Thanks in advance!
Derrick