↧
Answer by Emperor XLII for Error Loading RSS XML: Element 'channel' with...
Thanks to Michael’s answer, I was able to pre-process the offending XML (which is not under my control) to move errant atom:link elements:private static readonly XName AtomLink = XName.Get( "link",...
View ArticleAnswer by Michael for Error Loading RSS XML: Element 'channel' with namespace...
If you look at the results from the W3 validation you listed, it reads:line 8, column 0: Undocumented use of atom:link The atom:link element being placed before the channel element is causing the...
View ArticleError Loading RSS XML: Element 'channel' with namespace name '' was not found.
I have an exception herevar stream = e.Result;var response = XmlReader.Create(stream);var feeds = SyndicationFeed.Load(response); // IT IS HEREThe exceptionElement 'channel' with namespace name '' was...
View Article