Hi, I am new to C#. I tried with the following and succeeded, txtReader = new XmlTextReader(@"abc.xml"); txtReader.XmlResolver = null; xDoc = new XmlDocument(); xDoc.Load(txtReader) Thanks, Hariharan C.
Hariharan2105
Posts
-
How to open a XML file without validating? -
How to open a XML file without validating?Hi, I need to open a well-formatted xml file (but not valid against DTD), i tried the following, sill reciving error: // <!DOCTYPE article SYSTEM "xyz.dtd"> txtReader = new XmlTextReader(@"D:\abc.xml"); reader = new XmlValidatingReader(txtReader); reader.ValidationType = ValidationType.None; xDoc = new XmlDocument(); xDoc.Load(reader); Regards, Hariharan C.
-
MathMLHow can I convert MathML equations to TeX/LaTeX?
-
How to view MathML in IE6 using MathPlayer?Hi, I tried with NLM XML and XSL (http://dtd.nlm.nih.gov/publishing/), but I could not view MathML. Please help.. Regards, Hariharan C.
-
Encoding UTF-8 vs iso-8859-1Thanks Erik, I tried this too, resulting two junk characters instead of Unicode character. Do I need to install any fonts for this? Regards, Hariharan C.
-
Encoding UTF-8 vs iso-8859-1Hi, I tried the following in XML And the following in XSD thanks,. Hariharan C.
-
Encoding UTF-8 vs iso-8859-1Hi, I had created an XML file with Unicode (encoding UTF-8) using Word 2007; the problem is when I try to view it in IE through an XSL result in the following error: An invalid character was found in text content... I changed the encoding of XML file to “ISO-8859-1” – able to view in IE but the characters get messed. Please Help. Hariharan C