I'm playing about creating an RSS reader widget using Konfabulator/Yahoo. At the moment I'm
pulling in the RSS using
var xmlDoc = COM.createObject("Microsoft.XMLDOM");
xmlDoc.loadXML("http:foo.com/feed.rss");
I've simplified it here by removing the error handling, but what else could I use to do the same task using konfabulator? And how cross platform is this?
COM is Windows-specific, and Yahoo Widgets has XML parsing built-in; so stay away from MSXML :P
You should use the built-in
XMLDOM
object instead. But since you want to download the XML document from the ’net anyway,XMLHttpRequest
supports getting aDOMDocument
directly, without having to pass the data toXMLDOM
:It works exactly like the
XMLHttpRequest
on a browser.For completeness, if you need to parse XML from a string: