如何自定义WCF错误行为

本文关键字:错误 WCF 自定义 | 更新日期: 2023-09-27 18:01:26

我正在创建一个WCF服务来提供restful web HTTP服务。这就是我要的:

http://myservice/correct/url

这应该以JSON/XML

的形式返回结果http://myservice/incorrect/url

这应该返回一个定制的错误消息,而不是标准的"Endpoint not found."错误。

我读到IErrorHandler接口和扩展WebHttpBehavior类。

如何自定义WCF错误行为

最简单的方法是定义处理"Not Found"情况的操作-通过使用'*'的UriTemplate(如果没有其他模板匹配传入请求,它将匹配)。下面的代码显示了一个示例。

public class Post_0424d917_89cd_43c8_be70_5d4c6934b48c
{
    [ServiceContract]
    public interface ITest
    {
        [WebGet(UriTemplate = "/Echo?text={text}")]
        string EchoGet(string text);
        [WebInvoke(UriTemplate = "/Echo")]
        string EchoPost(string text);
        [WebGet(UriTemplate = "*")]
        Stream ErrorForGet();
        [WebInvoke(UriTemplate = "*")]
        Stream ErrorForPost();
    }
    public class Service : ITest
    {
        public string EchoGet(string text) { return text; }
        public string EchoPost(string text) { return text; }
        public Stream ErrorForPost() { return this.ErrorForGet(); }
        public Stream ErrorForGet()
        {
            WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.NotFound;
            WebOperationContext.Current.OutgoingResponse.ContentType = "text/html";
            string result = @"<html>
  <head>
    <title>Resource not found</title>
  </head>
  <body>
    <h1>This resource cannot be found</h1>
  </body>
</html>";
            return new MemoryStream(Encoding.UTF8.GetBytes(result));
        }
    }
    static void SendRequest(string uri, string method, string contentType, string body)
    {
        HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(uri);
        req.Method = method;
        if (!String.IsNullOrEmpty(contentType))
        {
            req.ContentType = contentType;
        }
        if (body != null)
        {
            byte[] bodyBytes = Encoding.UTF8.GetBytes(body);
            req.GetRequestStream().Write(bodyBytes, 0, bodyBytes.Length);
            req.GetRequestStream().Close();
        }
        HttpWebResponse resp;
        try
        {
            resp = (HttpWebResponse)req.GetResponse();
        }
        catch (WebException e)
        {
            resp = (HttpWebResponse)e.Response;
        }
        Console.WriteLine("HTTP/{0} {1} {2}", resp.ProtocolVersion, (int)resp.StatusCode, resp.StatusDescription);
        foreach (string headerName in resp.Headers.AllKeys)
        {
            Console.WriteLine("{0}: {1}", headerName, resp.Headers[headerName]);
        }
        Console.WriteLine();
        Console.WriteLine(new StreamReader(resp.GetResponseStream()).ReadToEnd());
        Console.WriteLine();
        Console.WriteLine("  *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*  ");
        Console.WriteLine();
    }
    public static void Test()
    {
        string baseAddress = "http://" + Environment.MachineName + ":8000/Service";
        ServiceHost host = new ServiceHost(typeof(Service), new Uri(baseAddress));
        host.AddServiceEndpoint(typeof(ITest), new WebHttpBinding(), "").Behaviors.Add(new WebHttpBehavior());
        host.Open();
        Console.WriteLine("Host opened");
        SendRequest(baseAddress + "/Echo?text=hello", "GET", null, null);
        SendRequest(baseAddress + "/Echo", "POST", "application/json", "'"world'"");
        SendRequest(baseAddress + "/NotFound", "GET", null, null);
        SendRequest(baseAddress + "/NotFound", "POST", "text/xml", "<body/>");
        Console.Write("Press ENTER to close the host");
        Console.ReadLine();
        host.Close();
    }
}