Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been looking into writing a web service using the .net Web APIs, but I'm seeing two different approaches to sending error messages. The first is to return an HttpResponseMessage with the appropriate HttpStatusCode set, something like this:

public HttpResponseMessage<string> Get() 
{ 
      ...
      // Error!
      return new HttpResponseMessage<string>(System.Net.HttpStatusCode.Unauthorized); 
}

And the other method is to just throw an HttpResponseException, like this:

public Person Get(int id)
{
     if (!_contacts.ContainsKey(id))
     {
         throw new HttpResponseException(Request.CreateErrorResponse(HttpStatusCode.NotFound, String.Format("Contact {0} not found.", id)));
     }

     return _contacts[id];
}

Are there any advantages/disadvantages to using either one? And in terms of scalability and performance, is either one better than the other?

share|improve this question
6  
ah, I didn't see that post. That does help a lot! thanks :) – joe_coolish Jul 17 '12 at 13:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.