Tagged Questions

6
votes
5answers
539 views

What’s the best XML parser for Perl?

I have tried many of the Perl XML Parsers. I was quite interested in the Sablotron Parser, but it is such a pain to install on a Windows box. Currently I have started using XML::LibXML and …
3
votes
2answers
225 views

How can I sort XML entries with LibXML and Perl?

I'm parsing an XML file with LibXML and need to sort the entries by date. Each entry has two date fields, one for when the entry was published and one for when it was updated. <?xml version="1.0" …
3
votes
3answers
868 views

Dynamic Variables in XSLT

Hi, I'm passing in a bunch of key-value pairs as parameters to a XSL (date -> "20th January", author -> "Dominic Rodger", ...). These are referenced in some XML I'm parsing - the XML looks like …
3
votes
1answer
916 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, …
2
votes
1answer
51 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, …
1
vote
2answers
70 views

ruby, libxml getting the child nodes that match an xpath

I need to get the child nodes of a node using XPath as I want to "drill down" into a node. Here's the code I'm trying: xml_ns = 'Document:http://www.google.com/books/' xml_document = …
1
vote
4answers
371 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.
1
vote
1answer
150 views

Jruby LoadError: Could not open any of [xml2, xslt, exslt] WINDOWS

I am running on windows vista 64 bit operating system. Geografikos is a large project created as a masters thesis project by Jeremy Witmer. It is all coded in JRuby. I am currently expanding the …
1
vote
1answer
153 views

How do I tell libxml-ruby about external entity files?

I'm trying to validate using libxml-ruby's DTD#validate, but I keep getting the following warnings: Warning: failed to load external entity "xhtml-lat1.ent" at :29. Warning: failed to load external …
1
vote
5answers
489 views

html parsing with libxml

In another thread I got convinced into using HTML parsers instead of regexps for HTML parsing (I thought they would work fine, but they didn't ;) ). I thought of using libxml (it has some HTML parser …
1
vote
1answer
399 views

Perl, LibXML and Schemas

I have an example Perl script which I am trying to load and validate a file against a schema, them interrogate various nodes. #!/usr/bin/env perl use strict; use warnings; use XML::LibXML; my …
1
vote
1answer
575 views

Is it possible to use libxml with unicode xmlchar?

Is it possible to use libxml with unicode? For example the xmlParseDoc function takes an xmlChar xmlChar has the following definition: typedef unsigned char xmlChar; I would like for libxml to …
0
votes
0answers
20 views

libxml-ruby and multiple namespaces

having this xml declaration: <didl:DIDL xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:didl="urn:mpeg:mpeg21:2002:02-DIDL-NS" …
0
votes
1answer
172 views

Multiple values in one attribute (such as class) in simplexml (using PHP)

If I try to add the same attribute twice to an element via simplexml, I get the following error: Warning: SimpleXMLElement::addAttribute() [function.SimpleXMLElement-addAttribute]: Attribute already …
0
votes
2answers
152 views

Problem with namespace and libxml when i use Xpath

hi i've got a problem when i'm using libxml with XPath. I want to parse an youtube playlist : <?xml version='1.0' encoding='UTF-8'?> <feed xmlns='http://www.w3.org/2005/Atom' …

1 2 next
15 30 50 per page