I have an application which sometimes must do some requests to the server to see that those requests are properly blocked. In other words, the expected server answer is 403 Forbidden.

With a piece of code like this:

HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(protectedPage);
httpRequest.Method = WebRequestMethods.Http.Head;
WebResponse response = HttpRequest.GetResponse();

a WebException is thrown on the last line.

When profiling code, this exception in a try/catch block has a performance impact which I want to avoid.

Is there a way to check for server response, expecting a 403, without having to catch an exception (but avoiding using sockets directly)?

link|improve this question

I don't see how catching that exception would affect performance at all. I mean it takes nothing compared to how long it takes to receive a webpage. – High828 Dec 5 '10 at 4:38
feedback

2 Answers

up vote 2 down vote accepted

Unfortunately, this is a vexing exception in the framework, and there's no way to avoid it (while still using the HttpWebRequest class). But, as High pointed out, this exception handling will take nanoseconds, while the web request itself will take milliseconds (at best), so don't worry about it.

The WebException object has a Response property that contains the response; when you handle the exception, it's important to dispose that WebResponse object (to avoid leaking connections).

link|improve this answer
+1 for promoting Eric Lippert's exception categorization – Tergiver Dec 5 '10 at 14:11
feedback

What's taking time in the profiling is probably not the exception catching part but the actual response from the web site.

The WebException.Status property will give you the status code for the HTTP response and you can do further processing based on that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.