Top "Xmlreader" questions

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

How to build XmlNodes from XmlReader

I am parsing a big number of big files and after profiling my bottleneck is: XmlDocument doc = new XmlDocument(); doc.…

c# xml .net-2.0 xmlreader
System.Xml.XmlException: Unexpected end of file while parsing Name has occurred

I'm using an XmlReader retrieved using SqlCommand.ExecuteXmlReader. Here is my input When I run this line of code: XDocument …

c# xml linq linq-to-xml xmlreader
View all text of an element with XmlReader C#

I'm using an XmlReader to iterate through some XML. Some of the XML is actually HTML and I want to …

c# xml xmlreader
XmlReader - Self-closing element does not fire a EndElement event?

I am using XmlReader in .NET to parse an XML file using a loop: while (xml.Read()) { switch xml.NodeType { …

c# .net xml .net-2.0 xmlreader
XmlReader - I need to edit an element and produce a new one

I am overriding a method which has an XmlReader being passed in, I need to find a specific element, add …

c# xml c#-4.0 xmlreader
How to create an XML file from a XmlReader?

How do you write an XML file from an System.Xml.XmlReader? I thought this would be a simple question …

c# xml xmlreader xmlwriter
"The 'http://www.w3.org/XML/1998/namespace:lang' attribute is not declared."

Sometimes, when validating certain XML documents using an XmlValidatingReader, I receive the following error: System.Xml.Schema.XmlSchemaValidationException: "The 'http://…

c# xml validation xsd xmlreader
c# whitespaces issue with XmlReader

I have a simple xml <data> <node1>value1</node1> <node2>value2</…

c# xmlreader
How can I clone MemoryStream object?

I have a MemoryStream object which is passed by Stream type parameter (Stream is abstract class in C#). I want …

c# stream xmlreader memorystream
How to set FEATURE_SECURE_PROCESSING in XMLReaderFactory?

I am using Piccolo jar and creating XML reader using XMLReaderFactory. I need to set the secure processing feature and …

java xmlreader saxparser