Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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.
12
votes
5answers
2k 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 ...
9
votes
8answers
6k views

html parsing with libxml

In another thread I got convinced into using HTML parsers instead of regexps for HTML parsing. I thought of using libxml (it has some HTML parser built in), but failed to find any useful tutorial. I ...
7
votes
5answers
97 views

XPath query result order

For another question I have created some XML related code that works on my development machine but not on viper codepad where I tested it before adding it to my answer. I could reduce my problem to ...
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
1answer
350 views

Processing a large xml file with perl

I have an XML file which is about 200MB in size, i wish to extract selected information on a line by line bases. I have written a script with perl using the module XML::LibXML to parse the file ...
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
920 views

What's wrong with this findnodes statement in my Perl's script?

I have a simple xml file that looks like this: <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <microplateDoc xmlns="http://moleculardevices.com/microplateML"> <camelids> ...
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
387 views

Validate XML using LibXML

Currently, I am using the XML::LibXML perl module to validate an XML file against a defined XML schema. At the moment, if my XML file fails to validate successfully against the defined XML Schema, I ...
3
votes
4answers
56 views

PHP-code blocks in templates loaded in DOMDocument

I need to parse HTML-template with DOMDocument. But HTML code may contain PHP-code blocks, for example: <div id="test" data="<?php echo $somevar?>"> </div> When I load this HTML I ...
3
votes
2answers
72 views

R XML package: how to set the user-agent?

I've confirmed that R calls of XML functions such as htmlParse and readHTML send a blank user agent string to the server. ?XML::htmlParse tells me under isURL that "The libxml parser handles the ...
3
votes
2answers
105 views

Add comment nodes outside root with ruby-libxml

I am writing an xml exporter in ruby and I am using libxml package for it. I want to write some comment nodes outside the root element <?xml version="1.0" encoding="UTF-8"?> <!-- comment ...
3
votes
1answer
97 views

Libxml Cleaner adds unwanted <p> tag to HTML fragments

I'm trying to sanitize user input to prevent XSS injection using libxml's HTML cleaner. When I input a string like this: Normal text <b>Bold text</b> I get this instead: ...
3
votes
2answers
112 views

Add a reference to an XSLT in Perl using only XML:LibXML

I have a XML created dynamically. However, I want to add a reference to an XSLT file in it, to be able to render the XML file as HTML in Mozilla. I want my final XML to start something like this: ...
3
votes
1answer
120 views

How to write an XSL 1.0 stylesheet with a node-set() function that will run on both MSXML and libxml

I have an XSLT 1.0 stylesheet running using the XSL processor included with PHP (libxml). I want to get the same stylesheet to run on the Microsoft XSL processor MSXML 6.0 (msxml6.dll) ideally so the ...
3
votes
2answers
637 views

How can I print out the attribute value instead of the element contents?

I have an XML file like this: <wave waveID="1"> <well wellID="1" wellName="A1"> <oneDataSet> <rawData>0.1123975676</rawData> ...
3
votes
2answers
309 views

What's wrong with this eval statement in Perl?

What's wrong with this eval statement in Perl? I'm trying to check that the XML is valid by catching any exceptions thrown from the parsing of the file with XML::LibXML: use XML::LibXML; my ...
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
4answers
4k views

How can I use Perl's XML::LibXML to extract an attribute in a tag?

I have an XML file <PARENT > <TAG string1="asdf" string2="asdf" > </TAG > </PARENT> I want to extract the string2 value here.. and also I want to set it to a new value.. ...
3
votes
2answers
970 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
4k views

Dynamic Variables in XSLT

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 this: ...
2
votes
2answers
23 views

Python3 and xml/xslt libraries

In python 2.6 I did this to achieve an xsl tranform import libxml2 import libxslt ... styledoc = libxml2.parseFile(my_xslt_file) style = libxslt.parseStylesheetDoc(styledoc) ...
2
votes
1answer
221 views

using perl XML::LibXML to parse

I am using perl's XML::LibXML module to parse an XML response from a device. It appears that the only way I can successfully get my data is by modifying the XML response from the device. Here is my ...
2
votes
2answers
71 views

Perl LibXML print extra “text” tag

I am trying to read tags from XML using LibXML. I can print all the tags; however, for some reason it also prints "text" tag which is not part of my XML. Anyone can explain to me what causes this ...
2
votes
1answer
84 views

Validating attribute uniqueness with XSD across XML document

I'm trying to validate the uniquess of an attribute across all elements that exist in an XML document. Example XML: <exampleXml> <a id="1"/> <a id="2"> <b id="1"/> ...
2
votes
4answers
1k views

libxml-ruby failed to load at x86_64

We are having problem with libxml-ruby gem at the server side Possible because it uses x86_64 architecture: $ uname -a Linux ip-10-228-171-64 2.6.21.7-2.fc8xen-ec2-v1.0 #1 SMP Tue Sep 1 10:25:30 EDT ...
2
votes
3answers
471 views

libxml converts accented characters into backslash x escapes. Json is not happy

I have the following attribute in an xml node I'm reading with libxml. It prints out normally with the accented character if I print out reader.node. reader = ...
2
votes
1answer
3k views

How can I access attributes and elements from XML::LibXML in Perl?

I am having trouble understanding / using name spaces with XML::LibXML package in Perl. I can access an element successfully but not an attribute. I have the following code which accesses an XML ...
2
votes
3answers
580 views

How can I ignore a bad xmlns namespace with Perl's LibXML?

I have an XML document that references a namespace that is no available: <microplateDoc xmlns="http://moleculardevices.com/microplateML"> ...my data is here... </microplateDoc> I have a ...
2
votes
2answers
938 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 = ...
2
votes
4answers
1k views

Problem with namespace and libxml when i use Xpath

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' ...
2
votes
2answers
5k views

Validation of XML file against XSD in Ruby

I'm trying to validate the following XML against a XSD schema using Ruby. It simply won't work, stops with an error message telling me Error: Element 'request': No matching global declaration ...
2
votes
1answer
525 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 ...
2
votes
1answer
2k 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
84 views

Which XSLT Processor for C++?

I started off with Xalan for C++, but that really seemed like overkill for this project. I will have an XML file in memory, there is one stylesheet to run it through... and that's pretty much it. The ...
1
vote
1answer
169 views

Use xpath (libxml2) in Objective-C

I learned the libxml2 from http://cocoawithlove.com/2008/10/using-libxml2-for-parsing-and-xpath.html Trying to parsing following html using libxml2: <html><head></head> <body> ...
1
vote
1answer
1k views

Can't find headers for libxml2 and iOS 5.0 SDK / Xcode 4.2 (beta 3)

Seems quite a few people have encountered this issue on the official Apple Developer forums, yet didn't find a solution yet, therefore I want to try my luck here :) With the iOS 5.0 SDK and Xcode 4.2 ...
1
vote
1answer
241 views

How to treat child nodes using libxmljs (Node.js)

I got confused when I tried to parse following xml using libxmljs: <?xml version="1.0" encoding="UTF-8"?> <ResultSet> <Result> <Title>Title 1</Title> ...
1
vote
2answers
109 views

PHP XMLReader - accessing ELEMENT constant but getting T_PAAMAYIM_NEKUDOTAYIM error

Got a server running: php 5.2.17, libxml 2.7.8 with XMLReader enabled. The problem is, it's complaining about parse error with T_PAAMAYIM_NEKUDOTAYIM when I try $xmlReader::ELEMENT. Is there any ...
1
vote
1answer
87 views

GHashTable responding totally differently to two identical inputs

What follows is the shortest compilable demonstration of my problem I can create. Look at the printf calls near the end, the output follows. I have no idea why two statements that are exactly the ...
1
vote
1answer
86 views

Retrieving a node original string

I'm a newbie with xml/libxml. What I'm trying to do is simple. I have a node like : <tag attr="example" attr2="example2"/> which is stored in a xmlNode. I want to get the following xmlChar* ...
1
vote
1answer
1k views

libxml2 with Android NDK

I'm trying to run libxml2 from the Android NDK (for porting of various code from iPhone). I've managed to get the basic code to compile and recognize the libxml header files but I can't use any ...
1
vote
0answers
136 views

Broken libxml2 on Mac OSX 10.5.8

While installing the latest version of libxml2 I managed to remove the system install of the library. My install is under /opt and works fine, however of course many programs rely on the system ...
1
vote
0answers
187 views

how to represent default null namespace using Perl XML::LibXML

Here is my code to generate the given XML. my $doc = XML::LibXML::Document->new( '1.0', 'utf-8' ); my $nodeBroadsoft = $doc->createElementNS ('C', 'BroadsoftDocument'); ...
1
vote
0answers
104 views

NSXMLParser crash in xmlFindCharEncodingHandler

An iOS app that has been parsing the same xml feed for about the last year and a half has suddenly developed an intermittent crash inside [NSXMLParser parse]. Crash logs indicate I instantiate an ...
1
vote
1answer
305 views

parse value from a dictionary/list

I have a dictionary/list balance_sign_dict from which I need to retrieve 2 values based on condition. The source XML for this is; <Value> <Signature>-873</Signature> ...
1
vote
1answer
2k views

Libxml in a library for ios

I have created a cocoa touch static library that contains functionality that I want to include in several apps. This library is linked to libxml and I have the header search path /usr/include/libxml2. ...
1
vote
2answers
224 views

libxml allocates too much memory on the iphone

I have a problem with the libxml parser on the iPhone! Im using the PerformXMLXPathQuery to parse a xml file with about 100'000 lines. The app breaks while running the PerformXMLPathQuery because it ...
1
vote
2answers
1k views

Requesting complete, compilable libxml2 sax example

I'm having a heck of a time figuring out how to use the sax parser for libxml2. Can someone post an example that parses this XML ( yes, without the <xml...> header and footer tags, if that can ...

1 2 3