Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
26k views

Reading Xml with XmlReader in C#

I'm trying to read the following Xml document as fast as I can and let additional classes manage the reading of each sub block. <ApplicationPool> <Accounts> <Account> ...
7
votes
4answers
389 views

Parsing an XML stream with no root element

I need to parse a continuous stream of well-formed XML elements, to which I am only given an already constructed java.io.Reader object. These elements are not enclosed in a root element, nor are they ...
7
votes
1answer
993 views

How to remove whitespace from XElement object created from XElement.ReadFrom(XmlReader)

I am parsing a large xml file. So I am using an XmlReader in combination with XElement instead of XElement.Load(). I have created as XElement object from XmlReader as shown below and here. static ...
7
votes
4answers
4k views

What is the best way to parse (big) XML in C# Code?

I'm writing a GIS client tool in C# to retrieve "features" in a GML-based XML schema (sample below) from a server. Extracts are limited to 100,000 features. I guestimate that the largest extract.xml ...
6
votes
4answers
6k views

How to use XmlReader class?

I want to save and load my xml data using XmlReader. But I don't know how to use this class. Can you give me a sample code for start?
6
votes
1answer
3k views

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 { case XmlNodeType.Element: //Do something case XmlNodeType.Text: ...
4
votes
1answer
86 views

XmlElement.SelectNodes(..) - finds nothing.. Help?

Sorry to bother you with such a simple question, but I'm stuck here since an hour: I have an xml file that looks something like this: <?xml version="1.0" encoding="utf-8"?> <aaa ...
4
votes
1answer
611 views

Android: why use XMLReader?

Is there any reason why I should use a XMLReader with the SAXParser? I'm seeing this kind of usage quite a lot: sp = spf.newSAXParser(); XMLReader xr = sp.getXMLReader(); ...
4
votes
2answers
526 views

Java XMLReader not clearing multi-byte UTF-8 encoded attributes

I've got a really strange situation where my SAX ContentHandler is being handed bad Attributes by XMLReader. The document being parsed is UTF-8 with multi-byte characters inside XML attributes. What ...
4
votes
3answers
356 views

Server A using xmlreader to read XML from xmlwriter on server B

I have two servers Server A reads http://www.some-url.com/xmlwriter_src.php using $reader = new XMLReader(); $reader->open('http://www.some-url.com/xmlwriter_src.php'); while ...
4
votes
1answer
533 views

Read XElement from XmlReader

I'm playing around with parsing an XMPP XML stream. The tricky thing about the XML stream is that the start tag does not get closed until the end of the session, i.e. a complete DOM is never received. ...
4
votes
1answer
293 views

Questions before writing own RSS reader for iPad

This is not new topic, one about iPhone ( iPhone RSS Reader ) My purpose is to get some latest and useful info before my implementation for RSS reader in iPad.( same with iPhone , right ? only GUI ...
4
votes
6answers
4k views

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.Load(filename); This approach was very handy because I could extract nodes like ...
4
votes
3answers
1k views

LINQ to XML vs. XmlReader

In my Silverlight application I'm using mostly XmlReader but I'm playing with idea to replace XmlReader implementation with LINQ to XML. What are pros and cons between LINQ to XML and XmlReader in ...
4
votes
5answers
12k views

Error Serializing String in WebService call

this morning I ran into an issue with returning back a text string as result from a Web Service call. the Error I was getting is below ************** Exception Text ************** ...
3
votes
3answers
96 views

C# What is the best way to compute a hash of an xml feed

I want to detect if a feed has changed, the only way I can think of would be to hash the contents of the xml document and compare that to the last hash of the feed. I am using XmlReader because ...
3
votes
1answer
524 views

Invalid URI: The Uri string is too long

I am trying to grab a schema and validate against my xml. XmlReaderSetting settings = new System.Xml.XmlReaderSettings(); settings.Schemas.Add(null, "http://example.com/myschema.xsd"); ...
3
votes
1answer
138 views

PHP xmlreader: How to cache xsd schema?

I'm using PHP xmlreader to validate and parse xml data. This xml is validated with some xsd schema from local file via XMLReader::setSchema function and remote xsd schema from http:// via ...
3
votes
2answers
674 views

“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 ...
3
votes
1answer
217 views

Read a namespaced attribute from a SimpleXmlElement (imported from XMLReader)

I'm trying to read a large xml file (about 40 MB), and use this data for update the db of my application. It seems i've found a good compromise in terms of elapsed time/memory using XMLReader and ...
3
votes
2answers
276 views

XmlReader chopping off whitespace after ampersand entity?

This is strange. I've got a WCF Message and I'm trying to read the contents of the body into an XmlDocument. The contents of the message body look like this on the wire (when inspected with WCF ...
3
votes
1answer
307 views

Deserializing XML element to an Object when the element could be one of many possible elements

Within a local framework with messages transmitted in XML via pub/sub,I need to be able to consume a number of messages, however, all messages are received as simple text and must be deserialized into ...
3
votes
3answers
617 views

XMLStreamReader for Objective C iPhone?

I am using XMLWriter for generating the xml. Now I want to read this xml with some Reader library/framework. Is there any complementary framework/library available for this. I am currently looking to ...
3
votes
6answers
576 views

Problem reading files greater than 1GB with XMLReader

Is there a maximum file size the XMLReader can handle? I'm trying to process an XML feed about 3GB large. There are certainly no PHP errors as the script runs fine and successfully loads to the ...
3
votes
4answers
1k views

XmlReader breaks on UTF-8 BOM

I have the following XML Parsing code in my application: public static XElement Parse(string xml, string xsdFilename) { var readerSettings = new XmlReaderSettings { ...
3
votes
2answers
1k views

getting the current position from an XmlReader

Is there a way to get the current position in the stream of the node under examination by the XmlReader? I'd like to use the XmlReader to parse a document and save the position of certain elements so ...
3
votes
3answers
177 views

Can anyone explain to me what is the meaning of the boolean parameter of the System.Xml.XmlDictionaryWriter.WriteNode(XmlReader, bool) method?

According to MSDN: defattr Type: System.Boolean If true, copy the default attributes from the XmlReader; otherwise false.If true, use default attributes; otherwise false. And my question is what does ...
3
votes
3answers
1k views

using php xmlreader to get data from xml to mysql

I am using php and xmlreader to retreive data from an xml file and insert into a mysql table. I chose xmlreader because the files supplied me are 500mb. I am new to all of this and am at a sticking ...
3
votes
2answers
2k views

Abusing XmlReader ReadSubtree()

I need to parse a xml file which is practically an image of a really big tree structure, so I'm using the XmlReader class to populate the tree 'on the fly'. Each node is passed just the xml chunk it ...
2
votes
3answers
42 views

How can I select a xml element based on some attribute and write it back complete in another file

I'm reading an svg/xml with XmlTextReader and I want to write just some of its elements back in a new svg/xml file <svg> <rect x="135.7" y="537.4" fill="none" stroke="#000000" ...
2
votes
5answers
61 views

How to check the uniqueness of an attribute in an XML file

If I have an XML file and I want to check the uniqueness of the attribute id of each element like the following document: <classes ...
2
votes
2answers
79 views

Reading XML nodes from web service

I have been playing around with a simple application for Windows Phone 7 using web services over http with XML responses. I'm using the following API http://api.chartlyrics.com/apiv1.asmx/ My issues ...
2
votes
3answers
88 views

Problem in reading XML

Hello Guys can you help me solving my problem in reading xml. I'm just new in xml. Here's the sample xml. <Org> <Org ID="1"> <OrgNum>1</OrgNum> ...
2
votes
1answer
55 views

XmlReader not recognizing EndElement

I have an XML string that has no formatting similar to: <SomeTag><Tag>tag 1</Tag><Tag>tag 2</Tag><Tag>tag 3</Tag><Tag>tag 4</Tag></SomeTag> ...
2
votes
2answers
160 views

Change the encoding to UTF-8 on a stream (MemoryMappedViewStream)

I am using the code below to read a ~2.5Gb Xml file as fast as I can (thanks to MemoryMappedFile). However, I am getting the following exception: "'.', hexadecimal value 0x00, is an invalid character. ...
2
votes
2answers
64 views

Is there a better way to get XmlReader NodeType properties?

Based on this, it looks like each time I want to get a node element name, or a text value or whatever, I need to use switch-case. So do I have to use something like this: while (reader.Read()) { ...
2
votes
2answers
477 views

C# XMLreader and child nodes

I have this xml file. <movies> <movie> <score>8.582207</score> <popularity>3</popularity> ...
2
votes
1answer
95 views

Investigating XMLReader object

I had asked a question about how to investigate the contents of XMLWriter object while debugging. I am trying to check the contents of an XmlReader object that is created from a memory stream in a ...
2
votes
3answers
477 views

Reset StreamReader for multiple XmlReader.Read() usages

I'd like to re-use a StreamReader I've associated with an XML file for .Read()-Calls from System.Xml.XmlReader. Basically I've put together a small extension method featuring the following code: ...
2
votes
1answer
833 views

XmlReader ReadStartElement causes XmlException

I'm writing a file reader using the XmlReader in a Silverlight project. However, I'm getting some errors (specifically around the XmlReader.ReadStartElement method) and it's causing me to believe that ...
2
votes
2answers
403 views

c# simple xml reader skips every other element

Hi all I have attempted to write a simple xml reader but have found that it unintentionally skips every other element in the xml file. Im guessing I am telling it to move onto the next element twice ...
2
votes
2answers
310 views

Reading and Writing XML as relational data - best practices

I'm supposed to do the fallowing: 1) read a huge (700MB ~ 10 million elements) XML file; 2) parse it preserving order; 3) create a text(one or more) file with SQL insert statements to bulk load it on ...
2
votes
1answer
381 views

XMLReader (in Php) and Error Handling

Quick version: Whats the standard (innovative? any?) way of catching and handling errors thrown by XMLReader due to malformed file -- specifically un-escaped characters. Prepossessing with Tidy ...
2
votes
4answers
650 views

How to read an XML file with an undefined namespace with XMLReader?

I'm relatively new to parsing XML files and am attempting to read a large XML file with XMLReader. <?xml version="1.0" encoding="UTF-8"?> <ShowVehicleRemarketing environment="Production" ...
2
votes
1answer
436 views

Do I need to Dispose XmlReader if I Dispose its underlying Stream?

I have the following method GetData that creates a StreamReader from a file. private void GetData(string file) { string filename = Path.GetFileNameWithoutExtension(file); XmlDocument xmldoc = ...
2
votes
2answers
531 views

How to read from an XmlReader without moving it forwards

hey guys, I've got this scenario: while (reader.Read()) { if (reader.NodeType == XmlNodeType.Element && reader.Name == itemElementName) { XElement item = null; try ...
2
votes
1answer
433 views

Copying an xml file with inserting new elements in a specific location- C#

Hi I want to copy an xml file and insert in a specific element locaiton some more elements; What is the best and easiest way doing this. I can use xmlReader read elements and write one by one ...
2
votes
1answer
154 views

.NET: What is the purpose of the ProhibitDtd property in XmlReaderSettings? Why is DTD a security issue?

The documentation says: When set to true, the XmlReader throws an XmlException when any DTD content is encountered. Do not enable DTD processing if you are concerned about Denial of Service ...
2
votes
4answers
462 views

XML/C#: Read content if only if attribute is correct

I have an XML file as follows, and I'm trying to read the content of the Name tag, only if the attribute of the Record tag is what I want. (continued below code) The XML file is: <?xml ...
2
votes
2answers
536 views

Get xml attribute values as string[]

My xml file has something like this: ... <Keyword name = "if" /> <Keyword name = "else" /> <Keyword name = "is" /> ... So how can I recursively get all of the values of the name ...

1 2 3 4 5 6