When doing Veracode
scanning of the C# file, the the line #4 fails validations:
1. strXML.Append("</root>");
2. XmlReaderSettings settings = new XmlReaderSettings();
3. settings.DtdProcessing = DtdProcessing.Prohibit;
4. XmlReader reader = XmlReader.Create(strXML.ToString(), settings);
5. xmlDoc.Load(reader);
What's the possible solution to that?