VB.NET Example Does Not Work
Status: Inactive
Brought to you by:
toolbutton
Doesn't correctly read from the stream.
Code is:
Dim myFeed As Atom.Core.AtomFeed =
Atom.Core.AtomFeed.Load(ThisSite.BloggerAtom)
Error received is:
[ArgumentNullException: Value cannot be null.
Parameter name: stream]
System.IO.StreamReader..ctor(Stream stream,
Encoding encoding, Boolean
detectEncodingFromByteOrderMarks, Int32 bufferSize)
+126
System.IO.StreamReader..ctor(Stream stream) +101
Atom.Utils.Utils..cctor() +95
Logged In: NO
I am getting the same error. And I am also trying to read a feed from blogger. The RSS feeds I tried reading add just fine to my RSS syndication. But I get an error on the same line:
AtomFeed feed = AtomFeed.Load(url);
or if I get the streem first, and pass the streem to the AtomFeed.Load method, I also get an error.
ANYONE out there has any idea what to do, besides writting my own Atom library from scratch?