The XML document specification places requirements on what an XML processor must do and not do, but the application is outside its scope. The processor (as the specification calls it) is often referred to colloquially as an XML parser.
29
votes
2answers
15k views
iPhone Development - XMLParser vs. libxml2 vs. TouchXML
I cannot find comparison of these parsing technique. Which one is most commonly used?
Regards.
Mustafa
12
votes
4answers
404 views
When should I choose SAX over StAX?
Streaming xml-parsers like SAX and StAX are faster and more memory efficient than parsers building a tree-structure like DOM-parsers. SAX is a push parser, meaning that it's an instance of the ...
11
votes
2answers
269 views
Which Perl modules for good for data munging?
Nine years ago when I started to parsing HTML and free text with Perl I read the classic Data Munging with Perl. Does someone know if David is planning to update the book or if there are similar books ...
10
votes
2answers
12k views
jQuery XML Parsing/Traversing
I have the following XML-
<rows>
<row id="5">
<cell>Item1</cell>
<attrs>
<attr>
<id>1</id>
...
9
votes
2answers
106 views
What XML parser should I use in C++?
Note: This is intended to be a definitive, C++-FAQ-style question for this. So yes, it is a duplicate of others. I did not simply appropriate those other questions because they tended to ask for ...
8
votes
11answers
2k views
Better way to detect XML?
Currently, i have the following c# code to extract a value out of text. If its xml, i want the value within it - otherwise, if its not xml, it can just return the text itself.
String data = "..."
...
6
votes
2answers
63 views
Can JAXB initialize values in base classes?
I am working on a Scala project, and we want to use XML to initialize our objects with JAXB (not Spring). I have a hierarchy where more data members get added in the subclasses. A simple example would ...
6
votes
2answers
247 views
Design/Implementation advice on XML Parsing with multiple connections/feeds/views
Starting my first iOS project and wanted to advice on how to structure the application.
The app pulls a XML feed, parses it out and displays a list representing the items in the XML feed. When ...
6
votes
1answer
447 views
Noob question about DOMDocument in php
Hi I'm just starting reading documentation adn examples about DOM, for crawling and parsing, I'm used to do this with get_content, but it's time to change =D for a new project.
I have a div, like
...
6
votes
4answers
2k views
lxml etree xmlparser namespace problem
I have an xml doc that I am trying to parse using Etree.lxml
<Envelope xmlns="http://www.xxx.com/zzz/yyy">
<Header>
<Version>1</Version>
</Header>
<Body>
...
6
votes
3answers
991 views
Parallel XML Parsing in Java
I'm writing an application which processes a lot of xml files (>1000) with deep node structures. It takes about six seconds with with woodstox (Event API) to parse a file with 22.000 Nodes.
The ...
6
votes
1answer
519 views
How do I combine results from zip-filter queries on an xml tree in Clojure?
I want to combine the results of three zip-filter queries on an xml tree. The XML I am parsing looks like this:
<someroot>
<publication>
<contributors>
...
6
votes
2answers
2k views
How can I get Nokogiri to parse and return an XML document?
A sample of some oddness:
#!/usr/bin/ruby
require 'rubygems'
require 'open-uri'
require 'nokogiri'
print "without read: ", Nokogiri(open('http://weblog.rubyonrails.org/')).class, "\n"
print "with ...
5
votes
1answer
99 views
XML Syntax when Using Colon (:), in Tags
I am working on a mobile application and have to read a xml feed and parse the information. There it has a special tag as this <dc:creator> Jonethon Owens </dc:creator>
In C# I am using ...
5
votes
1answer
405 views
Groovy XmlSlurper vs XmlParser
I searched for a while on this topic and found some results too, which I am mentioning at the end of post. Can someone help me precisely answer these three questions for the cases listed below them?
...
5
votes
2answers
545 views
Use jsoup to parse XML - prevent jsoup from “cleaning” <link> tags
In most case, I have no problem with using jsoup to parse XML. However, if there are <link> tags in the XML document, jsoup will change <link>some text here</link> to <link ...
5
votes
1answer
777 views
Parsing Mac XML PList into something readable
I am trying to pull data from XML PList (Apple System Profiler) files and read it into a in-memory database, then turning it into something readable on Windows machines.
The problem is that the ...
5
votes
3answers
86 views
What are the major methods / libraries available for parsing XML?
I'm performing a trade study evaluating various methods for parsing XML for a large system. I'm looking at both analytical and actual relative performance (space & time) on multiple platforms ...
5
votes
1answer
356 views
xpath find node that does not contain child
I'm trying to create some xpath that will find all a tags that do not contain img tags, so that something such as
<a href="http://aol.com">link</a>
matches, but
<a ...
5
votes
1answer
136 views
Printing Attribute Values in python-amara
I'm trying to parse an xml file with using python-amara.
doc = amara.parse('h.xml')
assert doc.xml_type == tree.entity.xml_type
m = doc.xml_children[0]
print m
When I do this it gives
...
5
votes
1answer
3k views
Howto let the SAX parser determine the encoding from the xml declaration?
I'm trying to parse xml files from different sources (over which I have little control). Most of the them are encoded in UTF-8 and don't cause any problems using the following snippet:
...
5
votes
5answers
2k views
How to remove accent characters from an InputStream
I am trying to parse a Rss2.0 feed on Android using a Pull parser.
XmlPullParser parser = Xml.newPullParser();
parser.setInput(url.open(), null);
The prolog of the feed XML says the encoding is ...
5
votes
6answers
3k views
C# - Parse malformed XML
I'm trying to load a piece of (possibly) malformed HTML into an XMLDocument object, but it fails with XMLExceptions... since there are extra opening/closing tags, and malformed XML tags such as ...
4
votes
1answer
53 views
How to evaluate expressions in this tree?
Here is an example of a parsed xml file I'm working with that tabs it into a tree form
commandList
assign
variable
#text[a]
expression-int
#text[1]
assign
variable
...
4
votes
2answers
57 views
Easiest way to parse XML into XHTML to apply CSS
I'm wondering how I can parse XML documents returned by a search so that I can style them with CSS on a website. I'm assuming I need to turn the XML into xhtml some how first, and then style the ...
4
votes
7answers
108 views
How to read properties from xml file with java?
I have the following xml file:
<resources>
<resource id="res001">
<property name="propA" value="A" />
<property name="propB" value="B" />
...
4
votes
4answers
231 views
Parsing XML / RSS from URL using Java Script
Hi i want to parse xml/rss from a live url like http://rss.news.yahoo.com/rss/entertainment using pure Java Script(not jquery). I have googled a lot. Nothing worked for me. can any one help with a ...
4
votes
2answers
265 views
XML Parsing: Element Tree (etree) vs. minidom
I've been using minidom to parse XML for years. Now I've suddenly learned about Element Tree. My question which is better for parsing? That is:
Which is faster?
Which uses less memory?
Do either ...
4
votes
2answers
153 views
What's the status of phobos' std.xml
I'm working on the beginnings of porting my php based OOP web framework to the d language and I'm having some trouble figuring out if it is safe to rely on phobos' std.xml classes to read xml from ...
4
votes
1answer
57 views
Processing optional xml attributes in Scala
I have code that reads an XML file. Some of the attributes of elements that I need to process are optional. I am trying to use Option[T] to manage them. I have written the following to pimp the ...
4
votes
1answer
78 views
How to prevent XML parsing errors being written to System.err (stderr)?
I am writing some unit tests that are deliberately passing bad strings to the Java DOM XML parser.
E.g.
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = ...
4
votes
1answer
197 views
How to efficiently store this parsed XML document in MySQL Database using Python?
Following is the XML file : book.xml
<?xml version="1.0" ?>
<!--Sample XML Document-->
<bookstore>
<book _id="E7854">
<title>
Sample XML Book
...
4
votes
1answer
284 views
XML query/modify problem in SQL server 2008 r2
I'm fairly new to SQL and I'm trying to filter and change the values inside of column that holds an XML document for a purchased order.
Here's an example of what the XML document looks like and what ...
4
votes
4answers
287 views
Sanitizing an SVG document by whitelisting elements
I want to extract around 20 element types from some SVG doucments to form a new SVG.
rect, circle, polygon, text, polyline, basically a set of visual parts are in the white list.
Javascript, comments, ...
4
votes
1answer
270 views
Problems parsing XML with XSL in it
When trying to read my xml from a webpage i get: "Error: At line 8, column 23: unbound prefix"
Below is my xml:
<?xml version="1.0"?>
<outertag>
<innertag ...
4
votes
2answers
386 views
How do I extract the “href” attribute from an XML “link” tag using PHP?
I am stumped as to how I can extract the "href" attribute from the "link" tag from this bit of XML using my PHP parsing script. If it helps at all, I am trying to extract the URL of a particular post ...
4
votes
2answers
918 views
Where I can find a detailed comparison of Java XML frameworks?
I'm trying to choose an XML-processing framework for my Java projects, and I'm lost in names.. XOM, JDOM, etc. Where I can find a detailed comparison of all popular Java XML frameworks?
4
votes
7answers
274 views
Is there a declarative way to parse XML to Java objects?
I'm writing an import function of XML files to my Java application. I am using XOM to parse the XML files. The code for parsing the XML is not easy to understand, it is some hardcoded .getChild(3) and ...
3
votes
4answers
88 views
Proof that RegEx should not be used for HTML parsing and that an XML parser should be used instead [closed]
The general consensus is never use RegEx for HTML parsing; an XML parser should be used instead.
Is there any commendable papers/theses out there which states/prove this?
After reading this ...
3
votes
2answers
54 views
How to determine the namespace of a given attribute inside NodeChild
I'm trying to parse some Android XML using XmlSlurper. For a given child node, I want to detect whether or not an attribute with a particular namespace has been specified.
For example, in the ...
3
votes
1answer
48 views
Sync data on device with server?
I am working on an app which reads an xml file generated on server and sync the local database on device.I am trying to construct a Sync Manager which hold all the fields available on the server and ...
3
votes
1answer
220 views
How to send SOAP request and Parse SOAP response in XML format in Android?
Am very new to Android apps development. In my new Android app i want to show some data from webservice. This means i have a SOAP message, i need to parse the data from SOAP response. In iPhone app i ...
3
votes
1answer
80 views
Parse Arabic XML in Android
I need to parse an XML. The problem is that the XML is in Arabic.
eg:
<?xml version="1.0"?>
<ROWSET>
<ROW>
<شهر>1</شهر>
<فصل>20111</فصل>
...
3
votes
1answer
79 views
Need a CDATA event notifying stax parser for java
I have taken over the maintenance of an application that uses a stax parser to break down an XML file of many records into individual records for further processing. Using this type of parser for this ...
3
votes
1answer
113 views
lxml.html.tostring re-ordered doctype and xml tags when printing
Imagine I have a file test.html with content,
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
3
votes
1answer
106 views
Reducing memory footprint while using large XML DOM's in Java
Good afternoon,
I have tried my best to answer this question myself from research and reading similar questions on Stackoverflow and similar sites, but two weeks on, time is getting short and I am ...
3
votes
3answers
89 views
getting specific object of xml which can be parsed using XStream
I'm new to XML parsing and want to convert XML file resulting from a web service to list of POJOs. as i have done some work with JSon and found it very easy to work with. while in the case of XML ...
3
votes
1answer
57 views
Populating textview dynamically and related to another autocomplete textview
Ok here is the thing. My application has one autocomplete textview and under it a textview. In the autocomplete textview I've managed successfully to get employee names. I keep the list of employee ...
3
votes
2answers
157 views
oBix (xml) client for Delphi
Is there a oBix client library toolkit for Delphi?
oBix is a XML web-server/client standard.
See: http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=obix
And: ...
3
votes
1answer
71 views
php Error: XML or text declaration not at start of entity Source
whenever I use the following code in PHP files , it gives me the error (Error: XML or text declaration not at start of entity
Source)
<?xml version='1.0' encoding='utf-8'?>
I don't know what ...