This post originated from an RSS feed registered with .NET Buzz
by Paul Vick.
Original Post: Every time I think I'm out, they pull me back in...
Feed Title: Panopticon Central
Feed URL: /error.aspx?aspxerrorpath=/rss.aspx
Feed Description: a blog on Visual Basic, .NET and other stuff
The transition to .Text has gone very smoothly, with one exception - my bandwidth usage has gone way, way up since I switched. Since I host my own blog and pay for my own bandwidth, this is not an academic issue. I investigated my logs a bit and my percentage of “304 Not Modified” responses for my RSS feed plummeted since I went over to .Text. A little further probing indicated that the conditional GET mechanism that .Text implements for its RSS feeds is somewhat broken at best. It ignores entity tags and can't agree with itself about which time it should use for If-Modified-Since.
To try and help out my pocketbook, I went in and (I hope) fixed the conditional GET mechanism to work properly now. Because I'm anal-retentive that way, I also cleaned up the code a bit. Anyway, my hope is that my bandwidth usage will drop now that I've implemented the changes on the blog. On the other hand, please let me know if your aggregator suddenly stops fetching my entries or something. (I'll try and post some on Monday to verify this.) I've also sent some mail to ScottW to figure out how to contribute fixes to the source code, so .96 can benefit.
As an interesting side note, because .Text is written in C#, I also had to do the most sustained C# programming that I've had to do in a while. Boy do I ever, ever, ever miss background compilations (even given the problems with it) and case insensitivity. Like night and day, at least to me...