I'm using SyndicationFeed
to retrive some data from diffrent RSS-sources. However, I just ran in to a problem when trying to read a RSS that as far as I can see has the same elements and data as ones that do work.
SyndicationFeed feed = SyndicationFeed.Load(XmlReader.Create("http://rsslink"));
For example, this RSS works just fine and is accepted without errors: http://kjellochklortanten.libsyn.com/rss
While this RSS: http://feeds.feedburner.com/tedtalks_audio causes the SyndicationFeed
to throw an error (this is translated from Swedish):
An error occurred when parsing a DateTime-value in XML
I've looked at the dates in both feeds and as far as i can see they are identical.
Any C#-ninja out there that has a clue what might cause this error?
Thanks in advance!