When a web server responds to HttpWebRequest.GetResponse() with HTTP 304 (Not Modified), GetResponse() thows a WebException, which is so very weird to me. Is this by design or am I missing something obvious here?
| |||
|
feedback
|
|
Ok, this seems to be a by-design behavior and a perfect example of a vexing exception. This can be solved with this:
| |||||||
feedback
|
|
This is really a frustrating problem, and can be alternatively worked around by using the following extension method class and calling request.BetterGetResponse()
You read more about it in my blog post on this subject at http://fearthecowboy.com/2011/09/02/fixing-webrequests-desire-to-throw-exceptions-instead-of-returning-status/ | |||
|
feedback
|