Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the WebClient class to post some data to a web form. I would like to get the response status code of the form submission. So far I've found out how to get the status code if there is a exception

Catch wex As WebException
        If TypeOf wex.Response Is HttpWebResponse Then
          msgbox(DirectCast(wex.Response, HttpWebResponse).StatusCode)
            End If

However if the form is submitted successfully and no exception is thrown then I won't know the status code(200,301,302,...)

Is there some way to get the status code when there is no exceptions thrown?

PS: I prefer not to use httpwebrequest/httpwebresponse

share|improve this question

6 Answers

up vote 8 down vote accepted

Tried it out. ResponseHeaders do not include status code.

If I'm not mistaken, WebClient is capable of abstracting away multiple distinct requests in a single method call (e.g. correctly handling 100 Continue responses, redirects, and the like). I suspect that without using HttpWebRequest and HttpWebResponse, a distinct status code may not be available.

Edit: It occurs to me that, if you are not interested in intermediate status codes, you can safely assume the status code is 200 OK, otherwise, the call would not be successful.

The WebClient class has a ResponseHeaders dictionary you might be able to use to that effect.

See http://msdn.microsoft.com/en-US/library/system.net.webclient.responseheaders%28v=VS.80%29.aspx.

share|improve this answer
2  
it seems that the only way would be webrequest/response – julio Aug 26 '10 at 16:01
1  
Seems a problem if you explicitly are looking for some other 200 series message (i.e. 201 CREATED - See: w3.org/Protocols/rfc2616/rfc2616-sec10.html). :-/ It would be nice if that was explicitly available even if the "intermediate" ones were skipped. – Norman H Nov 16 '11 at 17:24
1  
@NormanH, I do not disagree. It would seem that WebClient is a bit of a leaky abstraction when it comes to status codes. Cheers! – kbrimington Nov 16 '11 at 18:28

You can check if the error is of type WebException and then inspect the response code;

if (e.Error.GetType().Name == "WebException")
{
   WebException we = (WebException)e.Error;
   HttpWebResponse response = (System.Net.HttpWebResponse)we.Response;
   if (response.StatusCode==HttpStatusCode.NotFound)
      System.Diagnostics.Debug.WriteLine("Not found!");
}
share|improve this answer
Thanks a lot for this answer which points me to the right way to get response headers - from WebException, not from WebClient.ResponseHeaders. – Hong Apr 14 '12 at 13:02
yeah, the best approach is actually to read the response data in a try catch block and catch WebException – Henrik Hartz Jun 15 '12 at 13:18
Typically you would just catch that type of exception first, then catch the more generic exceptions later. Rather than using an if(getType). Might be worth an edit? – Daniel M May 1 at 17:30

There is a way to do it using reflection. It works with .NET 4.0. It accesses private a field and may not work in other versions of .NET without modifications.

I have no idea why Microsoft did not expose this field with a property.

private static int GetStatusCode(WebClient client, out string statusDescription)
{
    FieldInfo responseField = client.GetType().GetField("m_WebResponse", BindingFlags.Instance | BindingFlags.NonPublic);

    if (responseField != null)
    {
        HttpWebResponse response = responseField.GetValue(client) as HttpWebResponse;

        if (response != null)
        {
            statusDescription = response.StatusDescription;
            return (int)response.StatusCode;
        }
    }

    statusDescription = null;
    return 0;
}
share|improve this answer

Another way:

private class BetterWebClient : WebClient
    {
        private WebRequest _Request = null;

        protected override WebRequest GetWebRequest(Uri address)
        {
            this._Request = base.GetWebRequest(address);

            if (this._Request is HttpWebRequest)
            {
                ((HttpWebRequest)this._Request).AllowAutoRedirect = false;
            }

            return this._Request;
        } 

        public HttpStatusCode StatusCode()
        {
            HttpStatusCode result;

            if (this._Request == null)
            {
                throw (new InvalidOperationException("Unable to retrieve the status 
                       code, maybe you haven't made a request yet."));
            }

            HttpWebResponse response = base.GetWebResponse(this._Request) 
                                       as HttpWebResponse;

            if (response != null)
            {
                result = response.StatusCode;
            }
            else
            {
                throw (new InvalidOperationException("Unable to retrieve the status 
                       code, maybe you haven't made a request yet."));
            }

            return result;
        }
    }
share|improve this answer

You should use

if (e.Status == WebExceptionStatus.ProtocolError)
{
   HttpWebResponse response = (HttpWebResponse)ex.Response;             
   if (response.StatusCode == HttpStatusCode.NotFound)
      System.Diagnostics.Debug.WriteLine("Not found!");
}
share|improve this answer

You should be able to use the "client.ResponseHeaders[..]" call, see this link for examples of getting stuff back from the response

share|improve this answer
the response headers returned are the server headers like server,date,pragma,etc. but no status code(200,301,404...) – julio Aug 26 '10 at 11:52
Sorry about that, was a bit surprised to find that wasn't returned. – Paul Hadfield Aug 26 '10 at 11:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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