Top "Xmlreader" questions

xmlreader - Represents a reader that provides fast, noncached, forward-only access to XML data.

Reading Xml with XmlReader in C#

I'm trying to read the following Xml document as fast as I can and let additional classes manage the reading …

c# xml xmlreader
How to use XMLReader in PHP?

I have the following XML file, the file is rather large and i haven't been able to get simplexml to …

php xml parsing simplexml xmlreader
Why "Data at the root level is invalid. Line 1, position 1." for XML Document?

I am using a third-party DLL which transmits an XML document over the internet. Why would the DLL be throwing …

.net xml xmldocument xmlreader
DTD prohibited in xml document exception

I'm getting this error when trying to parse through an XML document in a C# application: "For security reasons DTD …

c# xml-parsing xmlreader
Problem - XML declaration allowed only at the start of the document

xml:19558: parser error : XML declaration allowed only at the start of the document any solutions? i am using php XMLReader …

php xml xmlreader
What is the best way to parse (big) XML in C# Code?

I'm writing a GIS client tool in C# to retrieve "features" in a GML-based XML schema (sample below) from a …

c# xml xml-serialization xmlreader
Appending an existing XML file with XmlWriter

I've used the following code to create an XML file: XmlWriterSettings xmlWriterSettings = new XmlWriterSettings(); xmlWriterSettings.Indent = true; xmlWriterSettings.NewLineOnAttributes = true; …

c# xml xmlreader xmlwriter
how to save xmldocument to a stream

I've already written code to parse my xml file with an XmlReader so I don't want to rewrite it. I've …

c# xmldocument xmlreader
Reading attribute values with XmlReader

I have an XML file that I'm trying to read from here, and have the following code: using System; using …

c# xml xmlreader
Deciding on when to use XmlDocument vs XmlReader

I'm optimizing a custom object -> XML serialization utility, and it's all done and working and that's not the …

c# xml-serialization xmldocument xmlreader