如果 WCF REST 调用中出现问题,例如未找到请求的资源,我如何在 OperationContract 方法中使用 HTTP 响应代码(例如,将其设置为 HTTP 404 之类的内容)?
7 回答
有一个WebOperationContext
你可以访问的,它有一个OutgoingResponse
类型的属性,OutgoingWebResponseContext
它有一个StatusCode
可以设置的属性。
WebOperationContext ctx = WebOperationContext.Current;
ctx.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.OK;
如果您需要返回原因正文,请查看WebFaultException
例如
throw new WebFaultException<string>("Bar wasn't Foo'd", HttpStatusCode.BadRequest );
对于 404, WebOperationContext.Current.OutgoingResponse上有一个名为SetStatusAsNotFound(string message)的内置方法,该方法将状态代码设置为 404,并通过一次调用设置状态描述。
请注意,还有SetStatusAsCreated(Uri location)将通过一次调用将状态代码设置为 201 和位置标头。
You can also return a statuscode and reason body with WebOperationContext's StatusCode and StatusDescription:
WebOperationContext context = WebOperationContext.Current;
context.OutgoingResponse.StatusCode = HttpStatusCode.OK;
context.OutgoingResponse.StatusDescription = "Your Message";
如果您希望在标头中查看状态描述,REST 方法应确保从 Catch() 部分返回 null,如下所示:
catch (ArgumentException ex)
{
WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.InternalServerError;
WebOperationContext.Current.OutgoingResponse.StatusDescription = ex.Message;
return null;
}
WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.Unauthorized;
throw new WebException("令牌码不正确", new InvalidTokenException());
对于 WCF 数据服务,这对我不起作用。相反,您可以在数据服务的情况下使用 DataServiceException。发现以下帖子很有用。 http://social.msdn.microsoft.com/Forums/en/adodotnetdataservices/thread/f0cbab98-fcd7-4248-af81-5f74b019d8de