the code below. We need to use these settings to tell the parser not to get the dtd. The web service returns a dtd link in the document we do NOT want to parse this! this code from 2005. it works fine. how can we do same thing in 2003. looks like not settings.ProhibitDtd in 2003. thanks
WebResponse response = request.GetResponse();
XmlReaderSettings settings = new XmlReaderSettings();
settings.ProhibitDtd = false;
settings.XmlResolver = null;
xmlReader = XmlReader.Create(response.GetResponseStream(), settings);