REXML, XPath and Namespace

H

hinsen

Hi.

I want to parse an xml file using REXML::XPath. I can easily navigate
through the xml-tree with methods like 'XPath.match(xml, "child::*")'
and. But i can't
access nodes with the structure 'prefix:name'. Even this call is not
working (it doesn't hit any node):

sub_tags = REXML::XPath.match(xml, "/rss/channel/item/dc:date", {
"dc"=>"http://purl.org/dc/elements/1.1/" })

Do you know what i'am doing wrong?
Thanks

<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xCal="urn:ietf:params:xml:ns:xcal">
<channel>
<title>Zvents search for events matching within 60 miles of
6</title>
<link>http://www.zvents.com/search?...</link>
<ttl>60</ttl>
<description>Zvents search for even Germany
returesults.</description>
<stream_count>2</stream_count>
<item>
<title>MIR DETSTWA</title>
<description>International Exhibition of Goods for
Childg</description>
<summary></summary>
<phone></phone>
<guid>http://www.zvents.com/events/show/896719-MIR-DETSTWA</guid>
<link>http://www.zvents.com/events/show/896719-MIR-DETSTWA</link>
<dc:creator>mBLAST</dc:creator>
<id>896719</id>
<parent_id></parent_id>
<series_count></series_count>
<geo:lat>50.12</geo:lat>
<geo:long>8.68</geo:long>
<pubDate>Wed, 30 May 2007 07:11:46 +0000</pubDate>
<dc:date>2007-05-30T07:11:46+0000</dc:date>
<xCal:dtstart>2007-10-03 00:00:00 +0000</xCal:dtstart>
<xCal:dtend>2007-10-07 00:00:00 +0000</xCal:dtend>
...
 
K

Keith Fahlgren

Even this call is not
working (it doesn't hit any node):

This seemed to work for me:
require 'rexml/document'
=> true

INPUT = <<INPUT_XML
<rss xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" version="2.0"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xCal="urn:ietf:params:xml:ns:xcal">
<channel>
<title>Zvents search for events matching within 60 miles of 6</title>
<item>
<pubDate>Wed, 30 May 2007 07:11:46 +0000</pubDate>
<dc:date>2007-05-30T07:11:46+0000</dc:date>
</item>
</channel>
</rss>
INPUT_XML
=> "<rss xmlns:geo=\"http://www.w3.org/2003/01/geo/wgs84_pos#\"
version=\"2.0\"\nxmlns:dc=\"http://purl.org/dc/elements/1.1/\"\nxmlns:xCal=\"urn:ietf:params:xml:ns:xcal\">\n
<channel>\n <title>Zvents search for events matching within 60
miles of 6</title>\n <item>\n <pubDate>Wed, 30 May 2007
07:11:46 +0000</pubDate>\n
<dc:date>2007-05-30T07:11:46+0000</dc:date>\n </item> \n
</channel> \n</rss> \n"

xml = REXML::Document.new(INPUT)
=> <UNDEFINED> ... </>

a = REXML::XPath.match(xml, "/rss/channel/item/dc:date", {
"dc"=>"http://purl.org/dc/elements/1.1/" })
=> [<dc:date> ... </>]

a.to_s
=> "<dc:date>2007-05-30T07:11:46+0000</dc:date>"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top