Reading RSS feeds --> not consistent
- by DEE
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