Tagged Questions
0
votes
1answer
75 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
0answers
47 views
Webkit webkit_dom_document_evaluate function documentation
I am looking for guidance executing xpath in webkit/gtk/c code. It seems like there is a function webkit_dom_document_evaluate that should do what I want to do based on bug report at ...
0
votes
2answers
231 views
XPath expression fails. (libxml2 in C) [closed]
I'm using libxml2 in a C program to do some stuff within XML documents.
Now... if I look to the following XPath I have an empty result.
...
1
vote
1answer
416 views
libxml2 and XPath traversing children and siblings in ANSI C
I have done a fair bit of XML stuff in Perl and now I need to do it in ANDI C for a project. Here's the code I wrote with a snippet of the XML. I have had success to a degree, but am having problems ...
0
votes
1answer
86 views
lixml2 C xpath fails with “invalid expression”
I use libxml2 in C application to parse XML files.
I get an error when I search for XPath with special character '$'.
Here my code :
xmlXPathExpression("//mytag/foo$");
And I get error "Invalid ...
0
votes
1answer
330 views
C/C++, libxml2: parsing HTML fragments
I need to parse real life HTML documents. In most cases they are well formed, but sometimes (and it can not be ignored) they appear as fragments having more than one sibling at the root level.
...
0
votes
3answers
524 views
How to get HTML tables using xpath in c?
I'm using libxml2 in my c project.
I was wondering how could I grab all tables in a html file using xpath.
Sample code will do the trick.
I need to parse the data in html table.
Thanks
EDIT:
This ...
5
votes
3answers
4k views
libxml2 error with namespaces and xpath
I am pasting some code here that compiles with no warning using gcc file.c -lxml2, assuming that libxml2 is installed in your system.
#include libxml/parser.h>
#include libxml/xpath.h>
#include ...
4
votes
2answers
2k views
Can I use relative XPath expressions in libxml2?
I am wondering whether it is possible to use relative XPath expressions in libxml2.
This is from the javax.xml.xpath API and I would like to do the similar thing using libxml2:
Node widgetNode = ...
2
votes
1answer
621 views
Weird XPath behavior in libxml2
I have this XML tree that looks like this (I've changed the tag names but if you're really clever you may figure out what I'm actually doing.)
<ListOfThings>
<Thing foo:action="add">
...