Tagged Questions

0
votes
3answers
134 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 …
0
votes
1answer
36 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
1answer
249 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
2answers
311 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
1k 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 …
1
vote
1answer
376 views

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

Hi, using xmltextreader, how would I load a hashtable. XML: <base><user name="john">2342343</user><user name="mark">239099393</user></base> This was asked …
3
votes
6answers
594 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
1answer
286 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 …
0
votes
2answers
74 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
3answers
424 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 …
1
vote
3answers
215 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
6answers
248 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 …