Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Stepping up from XML::Simple to XML::LibXML

by chovy (Initiate)
on Sep 17, 2008 at 22:05 UTC ( [id://712128]=note: print w/replies, xml ) Need Help??


in reply to Stepping up from XML::Simple to XML::LibXML

The example is an xml fragment, can you show one using a real xml file? One with a default namespace declared... It appears if you have: <library xmlns="http://www.perlmonks.org/xml/example/library"> </library> Then what would the xpath queries look like?

Replies are listed 'Best First'.
Re^2: Stepping up from XML::Simple to XML::LibXML
by Anonymous Monk on Oct 22, 2008 at 22:00 UTC
    This is the exact problem I am trying to solve now (namespace defined at library).
    I added:
    my $xc = XML::LibXML::XPathContext->new($doc);<br/> $xc->registerNs('ns', 'xmlapi_1.0');
    and changed the foreach to:
    foreach my $book ($xc->findnodes('//ns:book')) {

    But no matter what I try, I can't get book's attributes. I know I'm getting the info (print $book->to_literal, "\n";) but how do I access the info individually?

      That problem was addressed in a separate thread. I meant to provide a link from here but then I forgot.

      Aristotle provided a comprehensive answer in this node.

        Thanks grantm. Please see me reply to that post. I'm still missing... something!
      It would be really nice if the code was explained in English, line by line. For a newbie Perl writer figuring out what the different items mean is almost impossible. A guide that explains items would be most helpful. Example what the heck is findnodes what other keywords can be used and how

        XML::LibXML has a fairly extensive documentation. For example findnodes is documented in XML::LibXML::Node, along with many other methods that can be used on any node, since it's the base class for all nodes. The general idea of how the XML document is represented is explained in this tutorial: http://www.w3schools.com/dom/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://712128]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-03-19 10:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found