Tagged Questions
Software library for parsing XML documents.
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
20
votes
7answers
25k views
libxml/tree.h no such file or directory
i am getting following errors.
I have already added libxml2.dylib to my project, how ever i am getting this type of trouble.
Plz any body help me.
8
votes
4answers
378 views
python libxml2 reader and XML_PARSE_RECOVER
I'm trying to get a reader to recover from broken XML. Using the libxml2.XML_PARSE_RECOVER option with the DOM api (libxml2.readDoc) works and it recovers from entity problems.
However using the ...
7
votes
8answers
2k views
Installing nokogiri fails / libiconv missing
I've been trying to install nokogiri on Snow Leopard and whatever I try, the install fails in the end with libiconv is missing. please visit…
After following a lot of help found around the web ...
7
votes
3answers
3k views
Good strategies for REST -> XML -> Core Data -> UITableView?
What are good practices for asynchronously pulling large amounts of XML from a RESTful service into a Core Data store, and from this store, populating a UITableView on the fly?
I'm thinking of using ...
6
votes
2answers
1k views
How to install lxml with easy_install?
I'm having difficulty installing lxml with easy_install on Ubuntu 11.
When I type $ easy_install lxml I get:
Searching for lxml
Reading http://pypi.python.org/simple/lxml/
Reading ...
5
votes
1answer
58 views
XML::LibXML - detect if two Elements are the same?
I'm working with XML::LibXML in Perl.
Say I have two $element references gotten by different (opaque) XPath queries.
(How) can I determine, if the two $element (Node) refs are the same element in ...
5
votes
3answers
5k views
Linking Error libxml2.dylib at Xcode 3.2.5 & SDK 4.2
I am trying to connect to twitter using oauth library. The library needs libxml2.dylib to be added. When adding this to SDK 4.1 or less the project build successfully. But when I use that with xcode ...
5
votes
2answers
11k views
Simple libxml2 HTML parsing example, using Objective-c, Xcode, and HTMLparser.h
Please can somebody show me a simple example of parsing some HTML using libxml.
#import <libxml2/libxml/HTMLparser.h>
NSString *html = @"<ul>"
"<li><input type=\"image\" ...
5
votes
2answers
2k views
libxml2 xmlChar* cast to char*
How would you convert / cast an xmlChar* to char* from the libxml2 library? Thanks.
5
votes
2answers
2k views
How do you use the --pattern option of xmllint?
I'm trying to see how libxml implements XPath support, so it made sense to me to test using xmllint. However, the obvious option, --pattern, is somewhat obscure, and I ended up using something like ...
5
votes
1answer
3k views
how to use libxml2 to modify an existing xml file?
I need to take an existing xml file, and modify just a few attributes and write the file back out.
I was thinking of using libxml2 to get this done. Application is C/C++ running on Linux.
Thing is, ...
4
votes
2answers
84 views
Can I incorporate system libraries (e.g. libxml2) I compile against into a gem (e.g. nokogiri) that I can deploy to Heroku?
Nokogiri has a problem with translating to and from UTF-8 characters that turns out to come from libxml2, specifically version 2.7.6, which is the highest supported version on Ubuntu 10.04 LTS. The ...
4
votes
3answers
657 views
WARNING: Nokogiri was built against LibXML version 2.7.8, but has dynamically loaded 2.7.3
I have done all kinds of research and tried many different things. I know this question has been answered many times, but none of the suggested solutions are working for me.
After upgrading to lion I ...
4
votes
1answer
738 views
libxml2 vs expat for an XMPP server
I'm trying to create an XMPP library (and later a server) from scratch in a new C-like programming language (although the language itself is irrelevant) as a means to learn what I can about the XMPP ...
4
votes
2answers
555 views
xpath 'or' behaving like union ('|') with xmllib2
I have XML documents like:
<rootelement>
<myelement>test1</myelement>
<myelement>test2</myelement>
<myelement type='specific'>test3</myelement>
...
4
votes
4answers
5k views
Install libxml2 and associated python bindings - Windows
I am attempting to install libxml2 so that I can setup the python bindings and eventually use lxml.
However I am unable to work out here on earth I am supposed to be unzipping the files.
I haven't ...
4
votes
5answers
1k views
iPhone - does TouchXML use an undocumented APIs?
Recently I've heard that Apple is using tools to search for references to undocumented APIs and are rejecting iPhone apps from the App Store because of it.
The popular Three20 framework is causing ...
4
votes
5answers
1k views
Is it possible to disable stderr in C++?
I wrote a program for linux using libxml2 for html parsing. Although it does its job, the html parser writes lots of various errors to stderr. Is it possible to disable stderr at all (or redirect it ...
4
votes
2answers
2k views
Proper way to link against libraries from libraries for the iPhone/CocoaTouch
I'm writing a static library for the iPhone and I'm wondering if what I'm doing is recommended or if I should take a different approach.
The static library I'm writing is dependant on libxml2. ...
4
votes
4answers
2k views
Install PHP 5 without libxml2
I am trying to install a copy of PHP 5 to my home directory on the school computer. The problem is that whenever I try, it complains that my copy of libxml2 is too outdated to work.
Is there any way ...
3
votes
1answer
64 views
With libxml, how to get the character position of a given element or attribute in the source xml file?
With libxml2, we can use xmlGetLineNo to get the line number in which a node appears in the source XML file.
But how to get character positions of a given element and a given attribute? I need both ...
3
votes
2answers
588 views
Python - convert <type 'instance'> to <type 'str'>?
I'm using libxml2 and libxslt to process XML files. The return value is of type instance but I need to have a UTF-8 static string.
styledoc = libxml2.parseFile(style_file)
style = ...
3
votes
1answer
4k views
Parse XML Libxmljs (Node.js)
I'm attempting to parse an XML string with libxmljs (https://github.com/polotek/libxmljs). I'm having some issues though. I need to apply logic to what I'm parsing and return based upon what's defined ...
3
votes
3answers
903 views
Why does XML::LibXML find no nodes for this xpath query when using a namespace
I'm attempting to select a node using an XPath query and I don't understand why XML::LibXML doesn't find the node when it has an xmlns atribute. Here's a script to demonstrate the issue:
...
3
votes
2answers
580 views
libxml2 from java
This question is somewhat related to
http://stackoverflow.com/questions/530064/fastest-xml-parser-for-small-simple-documents-in-java
but with a few more specifics.
I'm working on an application ...
3
votes
2answers
659 views
Error installing scrapy on Mac Os X 10.6
Trying to install Scrapy on Mac OSX 10.6 using this guide:
When running these commands from Terminal:
cd libxml2-2.7.3/python
sudo make install
I get the following error:
Making install in .
...
3
votes
4answers
2k views
do i need 32bit libxml2 for python on snow leopard?
i'm having a hell of a time installing scrapy on my sl mbp. it requires libxml2, so i set about installing that. installing it from macports doesn't seem to pull down the python binding.
installing ...
3
votes
2answers
1k views
Getting list of all properties of a node using libxml
I'm having trouble to find a way to extract a list of all properties of a node without knowing what they're called.
I'm extracting single known properties using:
xmlGetProp(cur, (const ...
3
votes
1answer
522 views
What's the most efficient way to do recursive XPath queries using libxml2?
I've written a C++ wrapper function for libxml2 that makes it easy for me to do queries on an XML document:
bool XPathQuery(
const std::string& doc,
const std::string& query,
...
3
votes
1answer
6k views
Header Search Paths in XCode - Is it possible to set a macro or variables so they're relative to the SDK version?
Update: It appears that a recent XCode update may have changed this macro, please see this Question & Answer for more information: ...
3
votes
1answer
2k views
LibXML2 Sax Parsing and ampersand
I've encountered (what I think is) a strange behavior when using the sax parser, and I wanted to know if it's normal.
I'm sending this XML through the SAX parser:
The "& a m p ;" gets ...
3
votes
5answers
860 views
libxml2 replacement
I was looking for a better (well documented and efficient) xml processing C library.
¿ Ideas ?
2
votes
1answer
136 views
How do I patch libxml2 so it will compile with ICU support when using a prefix?
I'm trying to fix a bug in libxml2. I cannot get it to compile with --with-icu when using --prefix=/Server/software. I have submitted a bug report here, but I need to get it to compile for resolving a ...
2
votes
2answers
73 views
Returning a pointer from a member function of a class
My code looks something like this:
xmlparser.h file:
#include <libxml++/libxml++.h>
#include <iostream>
using namspace std, xmlpp;
class xmlpar {
public:
xmlparse(){}
...
2
votes
1answer
102 views
How to get node's line numbers with XML::LibXML
I am trying to process a XML with XML::LibXML and report lines where certain elements are. According to docs linked above, line_numbers option should do the trick, but I keep getting 0. The code:
use ...
2
votes
1answer
766 views
Example for parsing (X)Html with libxml2 in iOS
Recently I started to play around with the libxml2 lib within an iOS iPhone project. I read some useful links, like:
http://laurentparenteau.com/blog/2009/12/parsing-xhtml-in-c-a-libxml2-tutorial/
...
2
votes
2answers
98 views
apply an xslt function to some nodes from libxml2 in Python
In a python script, I want to aplly the following XSLT functions : normalize-space and translate to some nodes from an libxml2 tree
Can it be done without writing a stylesheet ?
If a stylesheet is ...
2
votes
1answer
164 views
Iterating over nodes using XML::LibXML
I am using XML::LibXML (Ver: 1.70).
My xml input file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<Equipment xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
2
votes
3answers
517 views
How can libxml2 be used to parse data from XML?
I have looked around at the libxml2 code samples and I am confused on how to piece them all together.
What are the steps needed when using libxml2 to just parse or extract data from an XML file?
I ...
2
votes
2answers
3k views
Xcode 4 libxml/… not found, new problem
I have searched the net and the consensus seems to be to add ${SDK_DIR}/usr/lib/libxml2 to the 'Header Search Paths'. I have done this and I can see in the project inspector that it expands the to ...
2
votes
2answers
558 views
did I find a libxml2 bug (memory leak in multi-threaded parsing)?
I am working actually on a data processing code using libxml2. I am stuck on a memory leak impossible to remove . Here is a minimal code to generate it :
#include <stdlib.h>
#include ...
2
votes
1answer
643 views
Python libxml2 XPath/Namespace Help
I'm trying to learn how to do XPath queries from Python using this sample XML file: http://pastie.org/1333021 I just added a namespace to it because my actual application uses it.
Basically, I want ...
2
votes
1answer
414 views
GDataXML/Libxml2 XPath concat doesn't work
I'm using GDataXML (uses libxml2 in background) on the iPhone to read a list of names from a XML-File.
<persons>
<person id=1>
<firstname>John<firstname>
...
2
votes
3answers
283 views
Why is my code leaking?
UPDATE2 I think I found the true source of the leaks. I had some business objects that have string properties I forgot to release. These string properties were copied from my custom xlm node object, ...
2
votes
2answers
372 views
Why does XML::LibXML keeps printing errors even when I disable them?
I'm using XML::LibXML to parse a document.
The HTML file behind it, has some minor errors, and the parser reports them:
http://is.gd/create.php?longurl=http://google.com:15: validity error : ID ...
2
votes
2answers
159 views
XPath query for a node
I should be doing something wrong. What is the XPath query for all nodes named "name" under display-name? I am using libxml2.
<?xml version="1.0" encoding="UTF-8"?>
<description ...
2
votes
1answer
540 views
libxml2 HTML parsing
I'm parsing HTML with libxml2, using XPath to find elements. Once I found the element I'm looking for, how can I get the HTML as a string from that element (keeping in mind that this element will have ...
2
votes
1answer
735 views
installing libxml2 on python 2.7 windows
I've searched but theres no libxml2 binaries for py2.7.
I have also tried running setup.py for version py2.6.9 but it gave me the error
failed to find headers for libxml2: update includes_dir
Does ...
2
votes
1answer
207 views
TouchXML - Invalid XML does not return error object
Say I have an invalid XML. For some reason, TouchXML still sees it as a valid object.
For example:
NSString *str = @"?> obviously invalid!";
NSData *data = [str ...