I have XML files which contains a doctype:
<!DOCTYPE someName SYSTEM "fileName.dtd">
The file is provided by a 3rd party, I have no control over how it is generated. I use XSLT to transform the XML, but XSLT complains about the dtd not found; how do I tell XSLT to ommit it so it doesn't try to access the dtd file which I don't have.
Thanks
Found out how to do it for C#