Tagged Questions
The xmltextreader tag has no wiki summary.
9
votes
4answers
217 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 ...
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
241 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
209 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
1answer
781 views
why does xmltextreader convert html encoded utf8 characters to utf8 string automatically?
I receive an XML file with encoding "ISO-8859-1" (Latin-1)
Within the file (among other tags) I have <OtherText>Example "content" And ─</OtherText>
Now for ...
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
48 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
0answers
159 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 ...
1
vote
2answers
150 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 ...
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
189 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
252 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
1answer
79 views
XmlTextReader for json?
Is there something that is similar to XmlTextReader in terms of performance, but using JSON instead?
I have the choice between parsing data in XML or parsing the same data in JSON. I'd like to use ...
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
1answer
228 views
Reading XML file faster in ASP.NET
I have multiple XML files that I need to parse. Problem is that I only need some data in the last couple of lines.
I currently use XMLTextReader and reader.ReadToFollowing("DATANEEDED"); but it is ...
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
521 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
18 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 ...
0
votes
1answer
61 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 ...
0
votes
1answer
107 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
1answer
127 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 ...
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
1k views
convert xml to html using php
I want to convert xml data into html. Below is sample xml data and I want to get/convert it in html format.
<content type="html">
<paragraph id="1291266887">
<div ...
0
votes
2answers
547 views
C# XmlTextReader: html entity replace
I have xml file with TAG like this:
<Question>dzia&#322;owa</Question>
I'm reading this file using XmlTextReader and for this TAG I get something like this:
dział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 ...
0
votes
2answers
815 views
How can I read in C# XML from another page while logged in to the site
I have logged in to the site with my webbrowser and whenever I try to call
WebClient myWebClient = new WebClient();
string str = myWebClient.DownloadString("http://localhost/myxml.aspx");
...
0
votes
2answers
140 views
Load XmlTextReader from a file in my web app via a method in another DLL
I am creating a method in a DLL that is going to be dropped into a web application.
The web application has a folder with a XML file in it:
/files/myfile.xml
My dll has to reference that DLL, but I ...
0
votes
2answers
9k views
Root element is missing error for .net XmlDocument.load()
Greetings all.
I'm getting an asp.net error "Root element is missing" when I load the results of a REST request into an XmlDocument. The same REST request looks fine and returns valid results when I ...
0
votes
1answer
1k views
How do I output XML as a string from an XmlTextReader into a Response.Write?
I have retrieved some XML from an API (at least I think so, the server response is 'OK') however I am putting the response stream into an XmlTextReader, how do I output this XML as a string?
0
votes
3answers
964 views
WPF - Searching an XML doc for values using XMLTextReader
Ok another WPF question, well I guess this is just general .NET. I have an xml document retreived from a URL.
I want to get multiple values out of the document (weather data, location, some other ...
0
votes
6answers
422 views
XMLTextReader in .NET 1.1
I have a process that reads an XML file. It uses the XMLTextReader class to do this as it is supposed to be a fast, forward only XML parser/reader.
Works just great with a 1 megabyte test file but ...
-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 ?