既然WebServiceHost2Factory已经死了,我如何从WCF休息服务返回错误文本?

tob*_*byb 5 .net c# rest wcf

我已经看到几个对WebServiceHost2Factory的引用作为用于有效处理WCF Rest服务中的错误的.显然,在该类中,我只需要抛出一个WebProtocolException,并且响应的主体将包含相关信息.

这堂课现在似乎已经失宠了..NET 4堆栈中是否存在替换?

我想弄清楚如果出现问题,如何在POST操作的响应体中返回错误文本.关键问题是在所有*的旁边

例:

[Description("Performs a full enroll and activation of the member into the Loyalty program")]
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "/fullenroll/{clientDeviceId}",
    BodyStyle = WebMessageBodyStyle.Bare,
    RequestFormat = WebMessageFormat.Json,
    ResponseFormat = WebMessageFormat.Json)]
public MemberInfo FullEnroll(string clientDeviceId, FullEnrollmentRequest request)
{
    Log.DebugFormat("FullEnroll. ClientDeviceId: {0}, Request:{1}", clientDeviceId, request);
    MemberInfo ret = null;
    try
    {
      //Do stuff
    }
    catch (FaultException<LoyaltyException> fex)
    {
        Log.ErrorFormat("[loyalty full enroll] Caught faultexception attempting to full enroll. Message: {0}, Reason: {1}, Data: {2}", fex.Message, fex.Reason, fex.Detail.ExceptionMessage);
        HandleException("FullEnroll", fex, fex.Detail.ExceptionMessage);
    }
    catch (Exception e)
    {
        Log.ErrorFormat(
            "[loyalty full enroll] Caught exception attempting to full enroll. Exception: {0}", e);
        HandleException("FullEnroll", e);
    }
    return ret;
}


/// <summary>
/// Deals w/ the response when Exceptions are thrown
/// </summary>
private static Exception HandleException(string function, Exception e, string statusMessage = null)
{
    // Set the return context, handle the error
    if (WebOperationContext.Current != null)
    {
        var response = WebOperationContext.Current.OutgoingResponse;

        // Set the error code based on the Exception
        var errorNum = 500;
        if (e is HttpException)
            errorNum = ((HttpException)e).ErrorCode;

        response.StatusCode = (HttpStatusCode) Enum.Parse(typeof (HttpStatusCode), errorNum.ToString());
        response.StatusDescription = statusMessage;
        // ****************************************************
        // How can I return this as the body of the Web Method?
        // ****************************************************
        WebOperationContext.Current.CreateTextResponse(statusMessage);
    }

    return (e is HttpException) ? e : new HttpException(500, string.Format("{0} caught an exception", function));
}
Run Code Online (Sandbox Code Playgroud)

Jes*_*sse 4

这个答案似乎建议使用以下内容,

HttpContext.Current.Response.Write(statusMessage);
Run Code Online (Sandbox Code Playgroud)

编辑- 正如tobyb在评论中提到的,AspNetCompatibility是必需的。

开启方法如下:

<system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true">
    <!--  ...  -->
</system.serviceModel>
Run Code Online (Sandbox Code Playgroud)