Software library for parsing XML documents.

learn more… | top users | synonyms

0
votes
1answer
33 views

Parsing part of XML file

So i am stuck on this for quite some time now. I use libxml2 and it works great for another part in the code but i cant seem to figure this one out and its bugging me like crazy. I have this xml ...
0
votes
1answer
38 views

Huge memory leak with libxml2

I'm coding a XML parser with libxml2. Actually, I finished it but there is a pretty annoying problem of memory. The program firstly get some links from my database and all those links point to a XML ...
0
votes
1answer
20 views

libxml2.parseFile for online files?

I'm trying to search around with XPath on Python, using libxml2.parseFile. For some reason, I'm unable to use this function with online files: any ideas on how to quickly solve this problem?
0
votes
1answer
40 views

How to parse XML file in a generic way

I'm using a configuration file such that when the user needs to change the configurations, I don't have to recompile the code. Currently I have a specific configuration structure that I parse myself. ...
0
votes
0answers
13 views

Change entity declaration in libxml2 python

I want to modify an entity declaration in an XML file. Using the libxml2 tree model, I can find the node, which corresponds to the declaration. The problem is: I see no way to access the properties ...
0
votes
0answers
7 views

how to use libxml's xmlRegexpPtr, or validate an xml elemnt's content

How can I use something like xmlRegExpPtr to validate content for an element? I'm creating some xml like this ... void createNewElementWithContent (const char *elementName, const char *content) { ...
0
votes
1answer
23 views

How to get a list of libxml2 API?

I am actually quite new to xml and libxml2. I can not find a list of API in the libxml2 website, all I can find is lots of links that makes no sense for me. Can anyone provide any link for the API ...
0
votes
1answer
90 views

libxml2.so.2: cannot open shared object file: No such file or directory

I am using Centos in which i had removed libxml2 accidentally now it was showing the folling error as follows There was a problem importing one of the Python modules required to run yum. The error ...
0
votes
0answers
24 views

libxml ampersand

I am using libXML for parsing XML and I have string "AAA BBB CCCC &" which will be encode in xml as "AAA BBB CCCC &". When charactersFoundSAX method is called, it gives me "AAA BBB CCCC " as a ...
0
votes
1answer
35 views

gnuwin32 libxml2 installation : setting several lib and include directories

I am now compiling libxml2 on windows 8 using mingw32. I have downloaded from here ftp://xmlsoft.org/libxml2/ and follow the instruction found in the README file. They instruct to configure make ...
0
votes
1answer
28 views

iOS : fix-it replace“<libxm/xmlversion.h>” with “”libxm/xmlversion.h“”

See these pictures and how can I fix this? Thank you!
0
votes
1answer
37 views

libxml2 use in android

I have successfully cross compiled a C++ library for Android, this library uses libxml2. Now when i try to test it through my jni layer, the native calls seems work fine. But when I do a basic call ...
0
votes
0answers
14 views

Trying to get libxml++ installed on OS X 10.6

I am new to C++ and am trying to install the C++ bindings for libxml2. After being at this for about four hours now, I feel like a joke is being played on me. I ran the configure script of lixml++ ...
0
votes
1answer
49 views

Android system loadlibary error for cross compiled libxml

I have cross compiled libxml2-2.90 for android by changing the CC, CFALGS LDFLAGS with android ndk . and run the config and make , it compiled successfully . Then I wrote simple libxml2 based example ...
0
votes
0answers
37 views

executing libxml2 functions in qtcreator causes segfault

I'm having a strange problem with running a program in qtcreator. I'm using an example from xmlsofts site for parsing XML files: http://www.xmlsoft.org/examples/parse1.c I've made slight ...
1
vote
0answers
62 views

cross compile libxml2 for android has build errors

I am trying to cross compile libxml2 for android , since libxml need icu4c headers , Downloaded from the link https://github.com/android/platform_external_icu4c and included the unicode headers and ...
0
votes
1answer
55 views

XPath to extract text with multiple tags, in iOS using libxml2

At iOS app with libxml2, while parsing this HTML piece (it's part of a big page) - ... <span class="ingredient"> <span class="amount"> <span class="value">500 ...
1
vote
1answer
349 views

Getting nokogiri to use a newer version of libxml2

I've been trying to get Nokogiri installed on my computer (Mountain Lion) to use with rspec and capybara, but for the life of me, I can't get it to run properly. From what I can tell, the issue is ...
0
votes
0answers
103 views

How can I change path for xml2-config [closed]

I’m trying to upgrade libxml2 from 2.6.26 to 2.7.7 on CentOS5.5 I installed libxml2-2.7.7 in /opt/libxml2-2.7.7/bin/ I'd already installed 2.6.26 in /usr by yum install libxml2 libxml2-devel. When ...
1
vote
1answer
45 views

error about UTF_8 format while creating my xml using libxml and c++

I created an xml file using libxml and c++. What I want to do now, is reading from a .txt and put this text between some specific tags. I have tried the following code, just reading from a file and ...
0
votes
0answers
32 views

Get content of tag libxml

I am using the libxml2 to porse xml, I would like to use a method which retrieve directly(1) in @xmlChar* the content of a tag, I use xmlNodeGetContent to catch the content of a node but I don't know ...
0
votes
1answer
116 views

ElementTree SyntaxError: expected path separator ([)

I've searched extensively for the past few days and can't seem to find what I'm looking for. I've written a script using Python 2.7.3 and ElementTree to parse an XML file and edit an attribute buried ...
0
votes
1answer
30 views

Is there a possibility for cloning an xmlTextReader (or multi-pass reading)?

I currently have to fix an existing application to use something other than the DOM interface of libxml2 because it turns out it gets passed XML files so large that they can't be loaded into memory. ...
2
votes
2answers
108 views

lxml: clean_html replaces html tag with div?

I'm using lxml 3.1.0 (installed with easy_install), and seeing strange result: > from lxml.html.clean import clean_html > ...
0
votes
1answer
51 views

How can I tell what version of libxml2 and libxslt are installed on OS X?

I'm trying to find out what version I currently have installed. OS X Mountain Lion (10.8.2) Thanks in advance!
0
votes
1answer
61 views

Which libxml2 API should I use for large files?

Our program currently uses the libxml2 DOM API (xmlReadFile) to load an entire file into memory. Unfortunately, this breaks down on "large" XML files, as the basic memory consumption of libxml2 DOM is ...
0
votes
1answer
37 views

XML ( LibXML ) : Easiest way to Replace an xhtml:h1 tag with an xhtml:h2 tag with the same contents

I am using the Perl/CPAN XML::LibXML to parse and manipulate a valid XHTML 1.1 document, that contains several nested <div> tags with <h1> , <h2> etc. Now, I am extracting divs from ...
1
vote
0answers
57 views

lxml._ElementTree.getpath(element) returns “*” instead of tag names for elements in non default name space

Please help to make getpath() to return full tag names in getpath() xpath or to find workaround I'm trying to generate xpath to element in a lxml.etree._ElementTree. ElementTree is generated by ...
1
vote
0answers
55 views

Cannot include libxml2 in my framework, can I include its source code?

I am creating a framework for iOS in objective-c with X-Code. This framework uses the library libxml2 that I can not include with the framework itself (simply it is not possible for frameworks). Then ...
4
votes
1answer
428 views

installed libtool but libtoolize not found

im trying to build libxml2 from source on my mac. so i have autoconf libtool and automake installed using mac ports autoconf and automake seem to be working fine as expected. i try running ...
0
votes
1answer
59 views

Howto handle libxml2 parser errors

I have to use xsd (schema) validation with libxml2, I can set a callback for error-handling, for the schema-validation errors, using: xmlSchemaSetValidErrors(). But before getting to the ...
0
votes
1answer
68 views

Connection disconnects with error “internal error” code=1 ErrorDomain=libxmlErrorDomain after XMPPframework sends auth to the server

I am using XMPPFramework to connect to my xmpp server on local network ,it connects but as soon as it sends the auth packet and recieves challenge it disconnects with error : "internal error" code=1 ...
0
votes
0answers
26 views

calling the dll from jna that has dependencies on other dll

I have made a dll which includes functions that parses the xml using libxml2 and this dll includes library of libxml2, zlib, iconv and require their respective libraries also. I have used _stdcall to ...
0
votes
1answer
31 views

how to pass all the xml files located in one folder to libxml for parsing

I have written the C code and have used libxml to parse the xml file by providing its absolute file , now my requirement is to pass only the folder name and to pick all the xm files one by one and ...
0
votes
1answer
41 views

librsvg crash due to libxml2?

I'm looking to support rendering SVG images as Bitmaps, I'm using librsvg. So far it works well and draws using Cairo, hooray! However I've run into an issue: We have a control that is similar to ...
0
votes
1answer
116 views

Hpple not able to parse HTML

I'm using Hpple to parse HTML and it seems that it doesn't recognize it is actually XML, which it should (XCode debugger shows this variable isXML = (BOOL) NO and it doesn't collect any data). How do ...
0
votes
1answer
69 views

Invoking a Webservice in C using libxml2

I am writing a C code to parse a XML file for which I use libxml2 library. The xml is stored in file. Now, I need to call a WebService from the same C (client)program and then fetch that XML and ...
0
votes
0answers
99 views

Get base64 image src from html using c

I tried libxml2 ,by using XmlTextReader. But It could not help me to parse,the only thing i get is "failed to parse" error. I simply want the img src="base64 string". I want to extract src ...
1
vote
1answer
54 views

brew install libxml2 timing out

brew install libxml2 doesn't work for me, and I can't determine why. jzohrab:~ jzohrab$ brew install libxml2 --verbose ==> Downloading ftp://xmlsoft.org/libxml2/libxml2-2.9.0.tar.gz /usr/bin/curl ...
0
votes
0answers
128 views

libxml2 to get the nodes of root element

I have written libxml c code to read the all the nodes in a one xml file . my xml file looks like <root> <node1> </node1> <node2> </node2> <node3> ...
0
votes
0answers
22 views

Trouble with libxml2 span tags..?

I seem to be having some trouble with libxml2. I have had a look through the docs and can't seem to find the solution so though I'd see if anyone else had has the same problem. When parsing HTML, ...
1
vote
0answers
83 views

libxml2 with default sax handler and custom error handler

I would like to use a simple libxml2 parser in a C++ program the following way: default sax handler is fine (actually I'd like to avoid the effort of writing my own. I understand that I can do what ...
0
votes
1answer
287 views

libxml2 2.8 on Ubuntu 10.04

I need to get libxml2 2.8+ working in my Ubuntu 10.04 environment and I can't seem to find the version I need for the OS. I could upgrade to 12.04 as it has 2.8 installed by default, but that's more ...
0
votes
0answers
62 views

libxml xmlNodeDump encoding issue

I have this code if(genericPtr->type == XML_ATTRIBUTE_NODE){ xmlAttrPtr attr = (xmlAttrPtr)genericPtr; printf("\n str %s\n", (const char *)attr->children->content); } ...
0
votes
2answers
102 views

libxml2: Special characters in xmlNewChild()

This is likely a very stupid question, but I'd be grateful for any help. I'm using libxml2 to build an XML file out of data in an sql database. So I'm looping over fields in the sql table and doing ...
1
vote
2answers
56 views

Solving undefined reference to 'xmlNewTextWriterFilename' [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? I am starting to develop in C and want to use the libxml2 C-Library for writing a ...
9
votes
1answer
1k views

#import <libxml/tree.h> file not found after xcode update

Lastnight I updated my iPhone to iOS 6.1, my current version of xcode wouldn't build to the phone as I needed the newest version. I went from xcode 4.5.2 to xcode 4.6, I made 0 changes in my project ...
0
votes
1answer
76 views

Issue finding a namespaced node in an XML document using libxml2's XPath

Given the following document, I want to extract tns:EchoResponse. (Original document prettified for readability.) <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope ...
0
votes
1answer
69 views

In Vala, why node->set_content doesn't accept the ampersand charater?

The following code Xml.Node* node = new Xml.Node (null, "name"); node->set_content("&"); produces the following error: error : unterminated entity reference Is this a bug or am I doing ...
0
votes
2answers
66 views

How to keep the whitespaces when reading an attribute value with libxml2

I use libxml2 for parsing my XML configuration file. The newest feature request involves the "correct handling of meaningful whitespaces", e.g. newlines should be kept. Currently I get the attribute ...

1 2 3 4 5 11