Reading RSS feeds --> not consistent

Posted by DEE on Stack Overflow See other posts from Stack Overflow or by DEE
Published on 2009-10-20T18:54:46Z Indexed on 2010/06/12 5:02 UTC
Read the original article Hit count: 337

Filed under:

Hi There,

i am trying to read the RSS feed by loading it to xmldocument

some thing like

xmlTextReader = new XmlTextReader(url);

XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(xmlTextReader);

some times the loading to xml document succeeds and some times it fails .

the url i am using is

http://rss.nzherald.co.nz/rss/xml/nzhrsscid%5F000000004.xml

what could be the probelm, is it like the RSS is not updated properly..?

any suggestions/comments

Regards DEE

© Stack Overflow or respective owner

Related posts about .NET