WCF 4.0 - Returning JSON WebFaultException with REST Service Template

后端 未结 3 896
名媛妹妹
名媛妹妹 2021-02-02 03:34

I am using the WCF REST Service Template 40(CS). I am throwing WebFaultExceptions as such:

throw new WebFaultException(\"Error Message\", HttpStatu         


        
3条回答
  •  半阙折子戏
    2021-02-02 04:36

    When WebHttpBehavior.FaultExceptionEnabled is set to true, WebFaultException will result in a 200 response with the fault rendered as XML and not JSON, despite the automaticFormatSelectionEnabled configuration setting or response format attribute settings. The MSDN documentation does not mention this and is misleading in that it states that this property is only related to the 500 response code.

提交回复
热议问题