1

根据ServiceStack 文档,我们有一个全局服务异常处理程序。文档说这个处理程序应该记录异常然后调用DtoUtils.HandleException,如下所示:

private object LogServiceException(object request, Exception exception)
{
    var message = string.Format("Here we make a custom message...");
    _logger.Error(message, exception);
    return DtoUtils.HandleException(this, request, exception);
 }

这会导致错误被记录两次,因为DTOUtils.HandleException也会以较少定制的格式记录它。是的,与 DTOUtils 日志记录相比,我更喜欢它,并且不想只使用它。

DTOUtils我们如何在保留其余功能的同时关闭日志记录?没有人喜欢收到应有的两倍多的错误电子邮件。

4

2 回答 2

2

我希望以下代码可以解决您的问题。

基于文档 New API, Custom Hooks, ServiceRunner

使用新 API 的 ServiceRunner 进行细粒度错误处理

在 AppHost.Configure

   LogManager.LogFactory = new ServiceStack.Logging.Support.Logging.ConsoleLogFactory();   

然后在 AppHost 类

         public override IServiceRunner<TRequest> CreateServiceRunner<TRequest>(ActionContext      actionContext)
          {
               return new MyServiceRunner<TRequest>(this, actionContext);
            }  

在 ServiceRunner 类中

       public class MyServiceRunner<T> : ServiceRunner<T>
       {

            public override object HandleException(IRequestContext requestContext, T request, Exception ex)
              {
                  if ( isYourCondition ) 
                  {
                        ResponseStatus rs = new ResponseStatus("error1", "your_message");
                        // optionally you can add custom response errors
                             rs.Errors = new List<ResponseError>();
                             rs.Errors.Add(new ResponseError());
                             rs.Errors[0].ErrorCode = "more details 2";

                            // create an ErrorResponse with the ResponseStatus as parameter
                            var errorResponse = DtoUtils.CreateErrorResponse(request, ex, rs);
                             // log the error
                             Log.Error("your_message", ex);
                             return errorResponse;

                   }
                   else
                        return base.HandleException(requestContext, request, ex);
               }

            }

如果返回 base.HandleException,它会在内部调用 DtoUtils.HandleException。您将在控制台中看到,只有一个日志错误。

在客户端,如果您处理自定义错误的 WebServiceException。

            catch (WebServiceException err)
            {
                if ( err.ResponseStatus.Errors != null)
               { // do something with err.ResponseStatus.Errors[0].ErrorCode; 
               }
            }
于 2013-09-19T19:29:55.980 回答
1

不要调用DtoUtils.HandleException,因为它会记录错误。也不叫ServiceRunner.HandleException,它叫DtoUtils.HandleException

调用DtoUtils.CreateErrorResponse以做出响应(由 使用DtoUtils.HandleException)。帮手ToResponseStatus也在DtoUtils

我的 AppServiceRunner 现在是这样的:

public class AppServiceRunner<T> : ServiceRunner<T>
{
    public AppServiceRunner(AppHost appHost, ActionContext actionContext)
        : base(appHost, actionContext)
    {
    }

    public override object HandleException(IRequestContext requestContext,
        T request, Exception ex)
    {   
        LogException(requestContext, request, ex);

        var responseStatus = ex.ToResponseStatus();
        return DtoUtils.CreateErrorResponse(request, ex, responseStatus);
    }

    private void LogException(IRequestContext requestContext, T request, Exception ex)
    {
        // since AppHost.CreateServiceRunner can be called before AppHost.Configure
        // don't get the logger in the constructor, only make it when it is needed
        var logger = MakeLogger();
        var requestType = typeof(T);
        var message = string.Format("Exception at URI:'{0}' on service {1} : {2}",
            requestContext.AbsoluteUri, requestType.Name, request.ToJson());

        logger.Error(message, ex);
    }

    private static ILog MakeLogger()
    {
        return LogManager.GetLogger(typeof(AppServiceRunner<T>));
    }
}

现在,我得到的唯一服务错误是此代码生成的错误。

于 2013-09-20T14:29:57.927 回答