If something goes wrong in a WCF REST call, such as the requested resource is not found, how can I play with the HTTP response code (setting it to something like HTTP 404, for example) in my OperationContract method?
|
|
There is a
|
|||||
|
|
If you need to return a reason body then have a look at WebFaultException For example
|
|||||
|
|
For 404 there is a built in method on the WebOperationContext.Current.OutgoingResponse called SetStatusAsNotFound(string message) that will set the status code to 404 and a status description with one call. Note there is also, SetStatusAsCreated(Uri location) that will set the status code to 201 and location header with one call. |
|||
|
|
|
This did not work for me for WCF Data Services. Instead, you can use DataServiceException in case of Data Services. Found the following post useful. http://social.msdn.microsoft.com/Forums/en/adodotnetdataservices/thread/f0cbab98-fcd7-4248-af81-5f74b019d8de |
|||
|
|
|
If you wish to see the status description in the header, REST method should make sure to return null from the Catch() section as below:
|
||||
|
|