Tagged Questions

3
votes
1answer
2k views

How to read a xml string into XMLTextReader type

I have an XML string. I need to convert this string into XMLTextReader(System.Xml.XMLTextReader) type in dotnet. I used the following code: string szInputXml = ...
3
votes
2answers
5k views

C# Foreach XML Node

I'm saving 2-dimensional coordinates on an XML file with a structure similar to: <?xml version="1.0" encoding="utf-8" ?> <grid> <coordinate time="78"> ...
3
votes
6answers
1k views

Large XML file, XmlDocument not feasible but need to be able to search

I am struggling with a sensible logic loop for stripping out nodes from an XML file too large to use with XPath supporting .NET classes. I am attempting to replace the single line of code I had (that ...
2
votes
4answers
243 views

Reading a xml file multithreaded

I've searched a lot but I couldn't find a propper solution for my problem. I wrote a xml file containing all episode information of a TV-Show. It's 38 kb and contains attributes and strings for about ...
2
votes
1answer
210 views

XmlTextReader passes end of XML document without recognizing

I'm trying to create a simple App which reads a XML using SAX (XmlTextReader) from a stream which does not only contain the XML but also other data such as binary blobs and text. The structure of the ...
2
votes
3answers
2k views

convert XmlReader to XmlTextReader

How do you convert XmlReader to XmlTextReader? Code Snippet: XmlTextReader reader = XmlTextReader.Create(pomfile.FullName); Here's the Build error I got: Cannot implicitly convert type ...
2
votes
1answer
1k views

XmlTextReader - Does it lock the file?

This is probably a really simple thing, but I haven't been able to find it, and I'm probably just searching for the wrong thing... XmlTextReader --> Does it lock the file you're reading? I'm using ...
1
vote
1answer
51 views

XmlTextReader - How to iterate through nodes

I need help with cycling through nodes of a XML document using XmlTextReader. Using anything else besides XmlTextReader is not an option, unfortunately. My code: class Program { private ...
1
vote
1answer
46 views

How to overwite nodes in an xml file?

I have the following XML file: <WindowEntries> <WindowEntry> <Name>maduranga</Name> <View>TRN_UNIT</View> <LU>TrnUnit</LU> ...
1
vote
2answers
190 views

How to identify short tags using XmlTextReader in C#?

Given below is a sample code that reads an XML and writes it. The output XML is invalid because it fails to detect short-tags like "<test attrib="123" />. Is there any way I can detect such tags ...
1
vote
1answer
253 views

XmlTextReader problem

I have the following XML file: <?xml version="1.0"?><!--This document contains the profiles that have been created.--><Profiles> <Profile> <name>One</name> ...
1
vote
4answers
324 views

XML Reader Performance

I've traced slugishness in my application to the bit of code that's being timed below. I knew that this would be a slow point but each request is taking an average of 1 second. The bit of xml that I'm ...
1
vote
2answers
84 views

Can XmlTextReader tell the difference between <tag> and <tag />

I am reading an XML file using an XMLTextReader. Is there a way to tell the difference between a start tag (like <tag>) and a self-terminating tag (like <tag />)
1
vote
4answers
3k views

Name cannot begin with the ' ' character

I'm parsing some XML in C#. I'm getting it from a database, and so converting it to a MemoryStream before reading it with an XmlTextReader. The problem is that I get this error: Name cannot begin with ...
1
vote
1answer
1k views

how to load a hashtable from a simple xml file using xmltextreader

using xmltextreader, how would I load a hashtable. XML: <base><user name="john">2342343</user><user name="mark">239099393</user></base> This was asked before ...
1
vote
3answers
522 views

Hash character in path throws DirectoryNotFoundException

Consider the following code snippet private void ProcessFile(string fullPath) { XmlTextReader rdr = new XmlTextReader("file:\\\\" + fullPath); while (rdr.Read()) { //Do something ...
0
votes
1answer
109 views

XMLTextReader is not reading all elements

I am trying to read attributes from an XML stream. Here is an example of the XML code <string xmlns="http://schemas.microsoft.com/2003/10/Serialization/"> <catalog version="1.1"> ...
0
votes
1answer
76 views

How to read XML string from DB into XMLTextReader?

Ihave an issue with reading an XML string into XMLTextReader.. I'm querying the a DB and getting a DataSet back. From that DataSet, I'm reading a specific row and column (which contains XML strings) ...
0
votes
1answer
39 views

What is the correct format for ReadContentAsDateTime XMLTextReader

I am using XMLTextReader to extract information out of a xml file. Now I want to use ReadContentAsDateTime but it always throughs an exception. I already tried 2005.9.26, 2005/9/26 and 2005, 9, 26. ...
0
votes
0answers
402 views

Serialized XML File using XmlTextWriter and Read using XmlTextReader?

We have a product which uses 'XmlTextWriter' in C# - .NET 2.0 to create a large number of small XML Files. These files are then repeatedly read using 'XmlTextReader'. We have found that in very ...
0
votes
4answers
232 views

Retrieve the stream file name from a XmlTextReader

This is somewhat trivial but here goes. I am passing an XmlTextReader object to a method using .Net 4.0 framework. public void TestMethod(XmlTextReader reader) { try { //... ...
0
votes
2answers
555 views

C# XmlTextReader: html entity replace

I have xml file with TAG like this: <Question>dzia&amp;#322;owa</Question> I'm reading this file using XmlTextReader and for this TAG I get something like this: dzia&#322;owa ...
0
votes
1answer
1k views

XMLTextReader not reading an element content

static void ReadXml() { string a= null; double b= 0; double c= 0; XmlReader xmlReader = new XmlReader("Testxml.xml"); xmlReader. using ...
0
votes
1answer
142 views

Merging XMLTextReaders in C#

I have a website that needs to pull information from two diffferent XML data sources. Originally I only need to get the data from one source so I was building a URL in the backend that went and ...
-1
votes
1answer
46 views

read large file with XmlTextReader in C#

I am reading a large file with XmlTextReader, it takes hours to read and do some processing, during the reading and processing , what will happen if this file is changed or deleted from file server ?