I'm having a problem with DTD validation. The following line is in my XML:
<!DOCTYPE REQUEST_GROUP SYSTEM "C2DRequestv2.0.dtd">
When I load that XML using System.Xml.XmlDocument.Load it wants to validate it against that DTD. However, it's looking for that DTD in "C:\Windows\System32". How do I tell my XmlDocument was DTD to validate against and where it's located?
<!DOCTYPE REQUEST_GROUP SYSTEM "C2DRequestv2.0.dtd">
When I load that XML using System.Xml.XmlDocument.Load it wants to validate it against that DTD. However, it's looking for that DTD in "C:\Windows\System32". How do I tell my XmlDocument was DTD to validate against and where it's located?