WCF服务不会返回500内部服务器错误。相反,只有400 Bad Request

时间:2012-10-02 19:12:28

标签: c# asp.net wcf

我创建了一个简单的RESTful WCF文件流服务。发生错误时,我希望生成500个Interal Server Error响应代码。相反,只生成400个错误请求。 当请求有效时,我得到正确的响应(200 OK),但即使我抛出异常,我也得到400.

IFileService:

[ServiceContract]
public interface IFileService
{
    [OperationContract]
    [WebInvoke(Method = "GET",
        BodyStyle = WebMessageBodyStyle.Bare,
        ResponseFormat = WebMessageFormat.Json,
        UriTemplate = "/DownloadConfig")]
    Stream Download();
}

的FileService:

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
public class GCConfigFileService : IGCConfigFileService
{
    public Stream Download()
    {
        throw new Exception();
    }
}

的Web.Config

<location path="FileService.svc">
<system.web>
  <authorization>
    <allow users="*"/>
  </authorization>
</system.web>
</location>
<system.serviceModel>
<client />
<behaviors>
  <serviceBehaviors>
    <behavior name="FileServiceBehavior">
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="false" />
    </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
    <behavior name="web">
      <webHttp/>
    </behavior>
  </endpointBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
  multipleSiteBindingsEnabled="true" />
<services>
  <service name="FileService" 
           behaviorConfiguration="FileServiceBehavior">
    <endpoint address=""
              binding="webHttpBinding"
              bindingConfiguration="FileServiceBinding"
              behaviorConfiguration="web"
              contract="IFileService"></endpoint>
  </service>
</services>
<bindings>
  <webHttpBinding>
    <binding
      name="FileServiceBinding"
      maxBufferSize="2147483647"
      maxReceivedMessageSize="2147483647"
      transferMode="Streamed"
      openTimeout="04:01:00"
      receiveTimeout="04:10:00" 
      sendTimeout="04:01:00">
      <readerQuotas maxDepth="2147483647" 
                    maxStringContentLength="2147483647"
                    maxArrayLength="2147483647" 
                    maxBytesPerRead="2147483647" 
                    maxNameTableCharCount="2147483647" />
    </binding>
  </webHttpBinding>
</bindings>

1 个答案:

答案 0 :(得分:3)

SIMPLE:

试用throw new WebFaultException(HttpStatusCode.InternalServerError);

指定错误详情:

throw new WebFaultException<string>("Custom Error Message!", HttpStatusCode.InternalServerError);

ADVANCED:

如果您希望通过为每个异常定义HTTP status来实现更好的异常处理,则需要创建自定义的ErrorHandler类,例如:

class HttpErrorHandler : IErrorHandler
{
   public bool HandleError(Exception error)
   {
      return false;
   }

   public void ProvideFault(Exception error, MessageVersion version, ref Message fault)
   {
      if (fault != null)
      {
         HttpResponseMessageProperty properties = new HttpResponseMessageProperty();
         properties.StatusCode = HttpStatusCode.InternalServerError;
         fault.Properties.Add(HttpResponseMessageProperty.Name, properties);
      }
   }
}

然后,您需要创建一个服务行为以附加到您的服务:

class ErrorBehaviorAttribute : Attribute, IServiceBehavior
{
   Type errorHandlerType;

   public ErrorBehaviorAttribute(Type errorHandlerType)
   {
      this.errorHandlerType = errorHandlerType;
   }

   public void Validate(ServiceDescription description, ServiceHostBase serviceHostBase)
   {
   }

   public void AddBindingParameters(ServiceDescription description, ServiceHostBase serviceHostBase, Collection<ServiceEndpoint> endpoints, BindingParameterCollection parameters)
   {
   }

   public void ApplyDispatchBehavior(ServiceDescription description, ServiceHostBase serviceHostBase)
   {
      IErrorHandler errorHandler;

      errorHandler = (IErrorHandler)Activator.CreateInstance(errorHandlerType);
      foreach (ChannelDispatcherBase channelDispatcherBase in serviceHostBase.ChannelDispatchers)
      {
         ChannelDispatcher channelDispatcher = channelDispatcherBase as ChannelDispatcher;
         channelDispatcher.ErrorHandlers.Add(errorHandler);
      }
   }
}

附加行为:

[ServiceContract]
public interface IService
{
   [OperationContract(Action = "*", ReplyAction = "*")]
   Message Action(Message m);
}

[ErrorBehavior(typeof(HttpErrorHandler))]
public class Service : IService
{
   public Message Action(Message m)
   {
      throw new FaultException("!");
   }
}