How do I recieve an xml feed with an xmlhttp object?
I have createn an asp document that retrieves feeds such as http://www.nytimes.com/services/xml/rss/nyt/Arts.xml and writes a responce containing the items as html.
Using:
Set xmlHttp = Server.CreateObject("MSXML2.ServerXMLHTTP")
xmlHttp.Open "GET", feedurl, false
xmlHttp.Send()
feedxml = xmlHttp.ResponseText
How do I use this to recieve feed xml from feeds that do not end in .xml such as http://news.google.com/nwshp?sourceid=navclient&ned=us&topic=t&output=rss
Thanks for your time.