Hi, I have been able to figure out how to parse Atom, well, at least
on the entry level.
The problem I'm stuck with is how to parse the feed's title and link?
With RSS you can just do the following:
set channelNodes = xmlDoc.selectNodes("//channel/*")
for each entry in channelNodes
if entry.tagName = "title" then
strChannelTitle = entry.text
elseif entry.tagName = "description" then
strChannelDescription = entry.text
elseif entry.tagName = "link" then
strChannelLink = entry.text
end if
next
But, since Atom does not have a channel, that won't work.
Anybody has any suggestions or experience with this?
Greets & thanks, Dominic