I am trying to extract keywords and image urls from this xml document (also attached)
http://www.powerhousemuseum.com/collection/database/opensearch/new_tlf_feed.php?start=1&show=3
It contains 3
/rss/channel/item elements
each containing one
/general element
each general element contains many keyword elements
each of which has a string element who's value i want.
I can get XPathNodeIterator on /rss/channel/item
with the correct count
And I can get an XPathNodeIterator on * on all of the item elements
But I cant seem to get a XPathNodeIterator on /general/keyword
inside of item
I have considered that general has an xmlns assigned to it but I want to grab all general elements regardless of their namespace. Any help would be great.
Additionally inside each item I would like to grab
/relation(2nd element)/resource/identifier/entry
I have been using these two pages as help with no luck
http://msdn.microsoft.com/en-us/library/ms256086(VS.80).aspx
http://msdn.microsoft.com/en-us/library/ms256095(VS.80).aspx
Thank you for any help or direction you can provide