The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
30 views

Get two different attributes from an Xml File

I have an Xml File that looks like this: <Head> <Node Name="something" value="10"/> <Node Name="somethingElse" value="3"/> </head> <Head> <Node Name="something" ...
0
votes
3answers
53 views

Dealing with awkward XML layout in c# using XmlTextReader

so I have an XML document I'm trying to import using XmlTextReader in C#, and my code works well except for one part, that's where the tag line is not on the same line as the actually text/content, ...
1
vote
1answer
133 views

C# Strip HTML Markup in XML

i really hope someone can help me with this issue. The solution should be on C#. I have a xml file with the size of 36 MB and with 900k lines. On some nodes it has a lot of html markup and some ...
2
votes
2answers
142 views

Cleaning up memory after reading a giant xml element value

I rarely turn here for help, but this is driving me crazy: I'm reading an xml file that wraps an arbitrary number of items, each with a b64-encoded file (and some accompanying metadata for it). ...
1
vote
2answers
281 views

Can't read RSS feed with xmlTextReader - “A column named 'link' already belongs to this DataTable”

I've been using an xmlDataReader to read RSS for many years, but all of a sudden two feeds I've use have introduced an extra line which is tripping up the xmlDataReader parser. The problem is the ...
4
votes
1answer
51 views

What's the path to the document cursor?

I'm using System.Xml.XmlTextReader the forward-only reader. When debugging, at any time I can check the properties LineNumber and LinePosition to see the line number and column number of the cursor. ...
0
votes
0answers
36 views

Logical Error using XMLTextReader & saving to a List<Class>

I am reading from a text reader. I need to separate the XML file in 2 parts. One with a location of other xml files to a list of strings. Completed. The second part I am having issues with. I need to ...
0
votes
3answers
70 views

Reading from XMLText Reader and adding to List of Classes

I have an XML file hosted on a website that I need to read using XMLText Reader. As I am reading, I need to add the items from the XML document as I am reading them to the list of classes. I'm not ...
1
vote
2answers
86 views

How to remove all instances of a character from a file in C#?

I am processing XML files from a third party. These files occasionally have invalid characters in them which causes XMLTextReader.Read() to throw an exception. I am currently handling this with the ...
0
votes
3answers
275 views

C# xmlTextReader error if element doesn't exist

I'm trying to read an xml file using xmlTextReader and store it in a list, but I 'm struggling to overcome this annoying little error. Let me explain a bit more: I'm storing all the nodes from the ...
0
votes
3answers
65 views

Reading adjacent elements in XML

I've got a large XML file and so I'm using XMLTextReader. I'm having trouble reading the value becaues the formatting is a bit different from other XML files I've worked with. <class> ...
4
votes
2answers
346 views

Fast way to get number of elements in a xml document

is there a best practice to get the number of elements from an XML document for progress reporting purposes? I have an 2 GB XML file containing flights which I need to process and my idea is to first ...
3
votes
4answers
380 views

Try-Catch statement ends While loop reading through an XML file in C#

I have a while loop going through an XML file, and for one of the nodes "url", there are sometimes invalid values within it. I put a try-catch statement around this to catch any invalid values. The ...
1
vote
0answers
333 views

C# XmlTextReader, Ignoring DTD Processing

I have this method: public void XmlTagCounter(string xmlPath, List<string> elements, List<int> elemCount) { XmlTextReader reader = new XmlTextReader(xmlPath); try { ...
0
votes
0answers
122 views

XmlTextReader in Visual Studio c++ reading incremental path names till it finds till end

i am using XmlTextReader^ reader = gcnew XmlTextReader("http://xxxxx/xml&start=0?key=xxxxxxxe&limit=100"); to read xml content then store the data i need in the array. The thing is each ...
0
votes
3answers
174 views

Reading specific text from XML files

I have created a small XML tool which gives me count of specific XML tags from multiple XML files. The code for this is as follow: public void SearchMultipleTags() { if ...
0
votes
3answers
311 views

Reading Multiple XML files

I have Created a small XML tool, to find the numbers of element present in Multiple XML files. This code gives the fine result for the elements which are must in XML files. But when it comes to ...
0
votes
1answer
119 views

XmlTextReader hangs up when reading a doctype element in a file generated by iPCU 3.6

Hi I using XmlTextReader to read policy files generated by the iPhone Configuration Utility 3.6 when the reader reaches the doctype element it will hang up for about 15-20 seconds. This is a huge ...
0
votes
3answers
947 views

I need to split apart a large XML file to multiple output xmls, using XmlTextReader

I need to take an XML file and create multiple output xml files from what could be thousands of repeating nodes of the input file. The source file "AnimalBatch.xml" looks like this: <?xml ...
0
votes
3answers
144 views

C# XMLReader Strange 17th position closed XMLReader bug

I have a ListView that has a bunch of stuff. Whatever is in the 17th spot always breaks (ObjectDisposedException "Cannot read from a closed TextReader"). 1 through 16 as well as 18 through 24 work ...
0
votes
1answer
207 views

Iterating through xmltextreader

I have a xml in the following format. <?xml version="1.0" encoding="UTF-8" standalone= "yes"?> <rss> <report name="rpt1"> <title>AAA</title> <image></image> ...
0
votes
2answers
193 views

Having difficulty with using XmlTextReader to print out certain values inside certain elements to the command line from an external .xml file

I'm trying to store and print the value between <name></name> tags of, atleast, the first <item></item> element, but I can't "find", or "get to", the value of ...
0
votes
0answers
940 views

C# Using XmlTextWriter, XmlTextReader with multiple elements

I use with C# 2008 Net Framework 3.5 the System.Xml Namespace. There are two functions XmlTextReader and XmlTextWriter which I use. The writing succeeds already, but I can't get SPECIFIC information ...
0
votes
1answer
519 views

how to use XMLTextWriter to write XML node at a specified position

I have an xml file likes below. <?xml version="1.0" encoding="utf-8" ?> <Book> <Title>Title</Title> <Content>Content</Content> </Book> I want to write ...
0
votes
3answers
148 views

How do I get all the subnodes of a node with certain attribute?

I have an xml document that goes like this: <Menu> <Category name="Comida Rapida"> <Food cocina="si"> <Name>Haburguesa</Name> ...
0
votes
1answer
164 views

Getting data from xml by attribute value C# using XmlTextReader

I have a file with the following content (myfile.xml). I have to get all content coming under (including product node) a product with id=1. <products> <product id="1"> ...
0
votes
3answers
1k views

XMLTextReader C#

<myroot> some data. </myroot> I have an xml file with some data like above. I want to get all data coming between <myroot> and </myroot> In to a string variable. There ...
0
votes
1answer
247 views

Returning XmlTextReader object, can I call .Close()

I'm in a bind right now trying to find the source of a problem. Our exception handling is lacking, so I'm kind of guessing on where the error is coming from. Here's my question, if a method returns an ...
0
votes
1answer
279 views

xml parsing error handling or how to put XMLTextReader's cursor back to start?

I've got a function api_request which takes API method as an argument, and returns XMLTextReader Shared Function api_request(method As String) As XmlTextReader request_text = method & ".xml" ...
0
votes
1answer
680 views

xmlTextReader.ReadInnerXml() is pulling in my entire XML doc into one variable

I am creating XML index files to be read in a later step. I have variable length arrays, and I am writing them to one file. There is a problem, I think its inside the reader code. For some reason the ...
0
votes
3answers
192 views

Nested If Statements Not Working

I just recently posted about trying to get an XMLTextReader to work, and I finally did. Unfortunately, now I cannot get it to take the data from the XML file because I am doing something wrong with my ...
0
votes
2answers
4k views

Using XmlTextReader

I am a beginner programmer starting off with C#, and web services. In the Service.cs file of my web service, I create a ReadXMLFile() method where I am trying to read an existing XML file, take the ...
0
votes
1answer
67 views

Reading xml with partial whitespace

I've a xml file with partial whitespace; <file> <document> <data>1</data> <data>2</data> <data>3</data> ...
0
votes
0answers
155 views

handling bad xml with xmltextreader

I am using multiple methods to parse xml, with xpathnavigator, regex expressions etc some of the types of parsing. However I strip the xml entries first either using string.split or xpathnavigator and ...
0
votes
1answer
305 views

Xdocument.Load is failing

I am unable to load Xdocument.Load I am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load Xdocument.LoadI am unable to load ...
0
votes
1answer
347 views

How to override XmlTextReader character entity expansion?

Using the .Net framework, I need to read XML entity text as raw string values (character entities not expanded) for use in a comparison / merge function. As far as I can tell, there's no way of ...
1
vote
1answer
363 views

“Extra content at the end of the document” error using libxml2 to read from file handle created with shm_open

I'm trying to write a unit test that checks some xml parsing code. The unit test creates a file descriptor on an in-memory xml doc using shm_open and then passes that to xmlTextReaderForFd(). But ...
1
vote
1answer
1k 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 ...
0
votes
1answer
686 views

VB.net XMLTextReader IO Exception: “File in use by another process”

I'm hoping you can help me out. I'm trying to build a program updater based around downloading XML files from a server. The idea being that the servers XML file contains the current version number ...
-1
votes
1answer
249 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 ?
1
vote
0answers
399 views

SMS HTTP API call from ASP.NET is slow

For a web application, I am creating a SMS module that can send an SMS from the application. My SMS provider has an API that I can call over HTTP. The API is called via an XmlTextReader who just ...
0
votes
1answer
771 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"> ...
1
vote
2answers
810 views

How to parse and update xml file using xmltextreader or xmlreader

Hi i have the following code to read the xml file and change the value of particular node ,but i want to do the same using xmltextreader or xmlreader, i am trying to avoid the statement ...
0
votes
1answer
346 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) ...
1
vote
1answer
85 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> ...
3
votes
4answers
643 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 ...
0
votes
1answer
144 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. ...
10
votes
4answers
993 views

Fixing bad XML file (eg. unescaped & etc.)

I got an XML file from 3rd party that I must import in my app, and XML had elements with unescaped & in inner text, and they don't wont to fix that ! So my question is what is the best way to deal ...
1
vote
2answers
784 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
334 views

XmlTextReader and embedded resource DTD

I'm trying to create a single EXE with no dependencies (spare the .NET Framework :-). The program involves parsing a bunch of XML docs (using XmlTextReader) that share the same DTD. The DTD is ...

1 2