For the Perl XML parsing module. For the C library libxml2, use the libxml2 tag.

learn more… | top users | synonyms

2
votes
1answer
24 views

Extract XML tag content in Perl using XML::LibXML

I have the following XML file: <?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet href="CoreNLP-to-HTML.xsl" type="text/xsl"?> <root> <document> <sentences> ...
1
vote
1answer
37 views

Getting XML parent elements whose children match criteria using Perl/LibXML

I'm using XML::LibXML (limited to v1.58). Thanks to Borodin in this post i'm correctly getting the values for PROPERTY NAME="Name" if CLASSNAME="SharedGtTranslator". What I would additionaly like is ...
2
votes
2answers
72 views

Perl XML::LibXML textContent

Is there any way how to keep tags of nodes from xml code? Explanation of the problem could be like this: I have an xml input, I query the input and I want to get xml output of the queried items. ...
1
vote
2answers
51 views

Perl LibXML encode entities

How do I force using of entities encoding in text nodes in XML::LibXML? I have on toString() output <test>&lt;text&gt;&amp;"&lt;/text&gt;</test> and I need ...
1
vote
2answers
130 views

perl - remove node from xml file

I have a XML file, and I want to read it - remove a node - save it. I run perl from terminal (perl script.pl) example XML (filename.xml): <?xml version="1.0" encoding="UTF-8"?> <twice> ...
1
vote
0answers
32 views

modifying xml file using LibXML

I'm trying to modify a file which has XML syntax <!DOCTYPE xml> <lrf instance_prefix="U" ...
0
votes
1answer
138 views

Why does XML::LibXML::Document's toString() give me “SCALAR(…)” instead of an XML string?

Here is a code sample that reproduces the behaviour I wonder about: #!/usr/bin/perl use strict; use warnings; use XML::LibXML; my $myXMLdocument = XML::LibXML::Document->new(); my $myXML = ...
0
votes
1answer
63 views

Perl XML::LibXML update contect [duplicate]

I am trying to update the content of an xml element. I am using XML::LibXML and need to use this library. Here is some sample data. <data-table> <data> ...
1
vote
2answers
88 views

Find value of child node

Ok, this is a pretty rudimentary question, but I'm new to Perl and I honestly can't seem to find the answer anywhere, even though I'm sure it will be ridiculously simple. Let's say I have the ...
2
votes
2answers
48 views

How do I defined unique constraint in xsd ? How can I achive error validation using xml-libxml?

With reference to topic, Perl, LibXML and Schemas If I want to make the isbn tag to be an unique constraint, then what will be the change required in XSD. In addition to this, if I want to add ...
2
votes
2answers
204 views

Is it possible for XML::LibXML to parse quirky tags?

Is it possible to get XML::LibXML to parse the node shown in the example below? I realize I may be creating invalid XML by specifying a '*' as part of the node name and would appreciate it if someone ...
3
votes
3answers
88 views

Perl using XML Path Context to extract out data

I have the following xml <?xml version="1.0" encoding="utf-8"?> <Response> <Function Name="GetSomethingById"> <something idSome="1" Code="1" Description="TEST01" ...
2
votes
1answer
146 views

Adding to a given XML the XSLT stylesheet declaration with perl + LibXML

Premise: I come from C++ and I'm pretty noob at Perl. I'm trying to add a stylesheet declaration to a given .xml file. The .xml file is created by a third part and downloaded aside; we are not ...
3
votes
2answers
340 views

Using XML::LibXML in Perl to alter XML file: newline chars are Unix, not Windows

Dear Perl and XML gurus I have a task to update values inside XML file using XPath. I use XML::LibXML library in Perl to read, alter and save XML file: # Read XML file my $parser = ...
1
vote
3answers
168 views

Random element order in XML document using XML::LibXML

I have a Perl script that reads a simple .csv file like below- "header1","header2","header3","header4" "12","12-JUL-2012","Active","Processed" "13","11-JUL-2012","In Process","Pending" ...
1
vote
1answer
121 views

validate XML against XSD with errors

I want to validate XML against XSD file and get errors if there is any. It works fine when I use it with DOM but not XMLReader. As far as know they both use libxml library so I tried to use it for ...
1
vote
0answers
370 views

Can't load 'C:/strawberry/perl/site/lib/auto/XML/LibXML/LibXML.dll' for module XML::LibXML

I have downloaded strawberry PERL and writing one application with CGI Perl Apache on Winxp sp3). One of the libraries (written by someone else) which I using uses XML::LibXML. When i load the page it ...
2
votes
2answers
283 views

Can't validate XML with XML schema and Perl (XML::LibXML)

xml: <?xml version="1.0"?> <workers xmlns="http://www.zoo.com" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:schemaLocation="http://www.zoo.com worker.xsd"> ...
0
votes
1answer
238 views

How can I use Perl's XML::LibXML to extract content between tags?

I have an XML file with content like this: <Node id="7"/> www <Node id="10"/> How is it possible using XML::LibXML and Perl to take the content between the two nodes, ie "www"? Thank ...
-1
votes
1answer
257 views

how to separate strings from descending xml nodes get by to_literal function from xml::xmllib module in perl?

I have XML structure in like this: <A> <B>One</B> <C>Two</C> <D> <E>Three</E> <F>Four</F> ... </D> ... ...
0
votes
1answer
162 views

Error while trying to canonize XML fragments in XML::LibXML

I am trying to canonize a XML fragment to avoid printing of self closing nodes in the resultant XML. ( i want node <test /> to be streamed as <test></test> due to constraints at the ...
1
vote
1answer
141 views

After using setData() method of LibXML in perl the data is not written out to the actual xml file

I have an issue with the setData method of libXML in perl. Here is my code snippet: print "\n Query: " , $query, "\n"; #Query my($exactNode) = $doc->findnodes($query); #Finding the nodes ...
1
vote
1answer
91 views

Failing to add xml element in a xml formatted structure

For some reason when I append element to xml file, it's written in one line, i.e. not formatted Original xml: <configuration> <property> <name>test1</name> ...
4
votes
3answers
255 views

XML::LibXML remove heading when write to xml

When I update value with XML::LibXML the first two lines are removed. I want to preserve the xml as is, except one updated value. My original xml is: <?xml version="1.0"?> <?xml-stylesheet ...
4
votes
2answers
174 views

Are blank child nodes of any use to XML parsers?

Why do we have to have the notion of blank XML nodes? What benefit do they bring to the alchemy of XML parsing? A simple example here with Perl's XML::LibXML: use strict; use warnings; use feature ...
0
votes
1answer
284 views

How to print content of responseXpath () in REST::Client module

I'm using REST::Client perl module to test my REST server. I want to print REST response as usual xml Currently I'm using print $client->responseContent() which prints xml in one line: ...
2
votes
2answers
2k views

XML::LibXML replace element value

I want to replace a "VAL1" value of an element in xml file For some reason it does not work for me: <testing> <application_name>TEST</application_name> ...
0
votes
1answer
717 views

parse html with XML::LibXML while not touching entities

I'm using XML::LibXML to parse a chunk of html in order to change the title attribute of all the anchor elements. The problem is that XML::LibXML tampers with un-encoded entites, and changes e.g ...
0
votes
1answer
830 views

Compile in 32 bits mode in x86_64 architecture

Im running on a machine with x86_64 architecture, with 32-bits compiled Perl 5.8.4. When I trying to install XML::LibXML i get following debug message: ... ... # Running under perl version 5.008004 ...
0
votes
1answer
830 views

Malformed UTF-8 character (fatal) error while parsing XML using XML::LibXML

I am parsing XML files using XML::LibXML. For the following XML entry I get the error: Malformed UTF-8 character (fatal) at C:/Perl64/site/lib/XML/LibXML/Error.pm line 217 which is ...
0
votes
1answer
110 views

XML::LibXML parsing and choosing element a quick one

I always get stuck at some logic questions when it comes to programming. This is logical and easy, I think, but hard for me, as I am unable to get there. I am using XML::LibXML to parse XML files. Now ...
0
votes
0answers
228 views

Can XML::LibXML add nodes to a document based on XPath alone?

I'm looking for a method that allows me to spring to life a text node that something like: $doc->addNode( $xPath ); The fact that XPath queries can get quite funky at times is probably a good ...
3
votes
1answer
485 views

XML::LibXML's notion of a text node's parent

Something seems odd here. In the example below, I'm accessing text nodes via an XPath query ( //book/isbn/text() ). The text() is necessary to coerce XML::LibXML into allowing me to use the ...
5
votes
2answers
1k views

How can I auto-indent XML nodes with XML::LibXML?

I'm adding nodes to my XML document as part some in-house processing, but cannot get XML::LibXML to auto-indent the added nodes. I get output like the following: Here's what I'm currently getting ...
5
votes
1answer
524 views

Why is XML::LibXML adding a child to one <book> and not the other?

I'm seeing some odd behavior with XML::LibXML. The code below is intended to add <year>2005</year> to both <book> nodes. Is something wrong here? I've tried changing the XPath query ...
5
votes
1answer
203 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 ...
2
votes
1answer
1k 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
729 views

Is XML::LibXML not supported on Perl 5.8.8?

I answered a question on SO a while back where I initially suggested using XML::DOM. After mirod suggested that I use XML::LibXML instead, I implemented it. And to be honest, it works great on my ...
3
votes
1answer
806 views

Validating XML in Perl with libxml and an XSD file

I am trying to have my perl script get an Xxml file from online and validate it according to an XSD file. The code to do this is as follows: my $url = shift @ARGV; my $response = $ua->get($url) ...
-5
votes
1answer
163 views

iphone os 4.0 and libxml2 and os 2.2.1 [closed]

My project using libxml2 and i want to compile my application with iOS 4.0 with deployment target 2.2.1 but I am getting errors for libxml2 what is the way to do this. I want compile on iOS 4.0 and ...
4
votes
2answers
426 views

Is this a valid XPath expression?

Is this xpath a valid XPath expression? (It does what it should ). #!/usr/bin/env perl use strict; use warnings; use 5.012; use XML::LibXML; my $string =<<EOS; <result> <cd> ...
0
votes
1answer
113 views

Is there a reason to use the XML::LibXML::Number-object in my XML::LibXML-example?

In this example I get to times '96'. Is there a possible case where I would need a XML::LibXML-Number-object to to achieve the goal? #!/usr/bin/env perl use warnings; use strict; use 5.012; use ...
0
votes
1answer
223 views

XML::LibXML: How to get a Number/Boolean-object with find?

From http://search.cpan.org/~pajas/XML-LibXML-1.70/lib/XML/LibXML/Node.pod: find evaluates the XPath 1.0 expression using the current node as the context of the expression, and returns the result ...
1
vote
2answers
1k views

XML::LibXML Line Ending (whitespace) Problem

HI, I am parsing an XML file using LibXML in Perl. The problem that I have is the ending characters (whitespace) is treated as a text node. For instance, given an input like the following <?xml ...
1
vote
1answer
570 views

Why doesn't Perl's XML::LibXML module (specifically XPathContext) evaluate positions?

I have an XML representation of a document that has the form: <response> <paragraph> <sentence id="1">Hey</sentence> <sentence id="2">Hello</sentence> ...
1
vote
2answers
395 views

Does XML::LibXML::Reader read HTML?

I didn't find anything about parsing HTML in the XML::LibXML::Reader documentation. And I tried to parse a HTML-site and it didn't work. Is my conclusion, that XML::LibXML::Reader doesn't work with ...
1
vote
2answers
455 views

Why can't I access elements inside an XML file with XPath in XML::LibXML?

I have an XML file, part of which looks like this: <wave waveID="1"> <well wellID="1" wellName="A1"> <oneDataSet> <rawData>0.1123975676</rawData> ...
3
votes
1answer
7k 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 ...
4
votes
4answers
11k views

How do I install XML::LibXML for ActivePerl?

I am new to Perl and I am using ActivePerl. I am getting the following error: Can't locate XML/LibXML.pm in @INC... I have tried everything but cannot find the steps to install the "correct" ...
1
vote
4answers
2k views

Cannot install XML::LibXML module on Windows

I am trying to use XPath to extract some HTML tags and data and for that I need to use XML::LibXML module. I tried installing it from CPAN shell but it doesn't install. I followed the instructions ...

1 2