I added this:
else
{
//xNodeIterator.Count = 0
System.Xml.XmlDocument xmlDoc =
new XmlDocument();
xmlDoc.Load("http://www.moock.org/blog/index.rdf");
Response.Write("xmlDoc.FirstChild.Name: "+xmlDoc.FirstChild.Name+"\n");
Response.Write("xmlDoc.FirstChild.HasChildNodes:
"+xmlDoc.FirstChild.HasChildNodes);
}
and the response i got was this:
xmlDoc.FirstChild.Name: xml
xmlDoc.FirstChild.HasChildNodes: FalsexmlDoc.FirstChild.Name: xml
xmlDoc.FirstChild.HasChildNodes: False
Something tells me this type of document isn't liked by the parser. Any suggestions?