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

时间:2013-03-12 19:16:55

标签: c# .net wcf rest

我已经看到几个对WebServiceHost2Factory的引用作为WCF Rest服务中的class to use to effectively句柄错误。显然,在该类中,我只需要抛出一个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));
}

1 个答案:

答案 0 :(得分:4)

This answer似乎建议使用以下内容,

HttpContext.Current.Response.Write(statusMessage);

修改 - 在评论中tobyb mentionedAspNetCompatibility是必需的。

以下是如何启用它:

<system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true">
    <!--  ...  -->
</system.serviceModel>
相关问题