I am trying to throw an HttpResponseException(HttpStatusCode.NotFound) and I am getting the following error

The response message returned by the Response property of this exception should be immediately returned to the client. No further handling of the request message is required.

I have removed all of the code in my method and I am just throwing the exception like this

[WebGet]
public MyData Get()
{
    throw new HttpResponseException(HttpStatusCode.NotFound);
}

If I change my method to return a HttpResponseMessage I can get it to work correctly, however it does not solve the issue and I am unable to get my authentication operation handler to work without being able to throw a HttpResponseException.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Try using a WebFaultException for returning HTTP Status codes in WCF...

throw new WebFaultException(HttpStatusCode.NotFound);
link|improve this answer
that worked great but for some reason if I use a status code of unauthorized I still get a 404? – Stuart Feb 18 at 9:36
@Stuart do you have any operation/message handler which might be causing the 404? – antony_scott Feb 18 at 9:40
@AntonyScott the only handler I have is an authorization handler that I have copied from a Haack post. It only throws unauthorized exceptions. – Stuart Feb 18 at 9:52
i used that and had the same issues, i changed to using a message handler and found that works much better – antony_scott Feb 18 at 10:55
1  
I am now moving over to ASP.NET Web Api as well, so this should now be a breeze. Thanks for your help @AntonyScott. Now just need to be patient until the RTM of MVC4 – Stuart Feb 29 at 11:31
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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