5

私の理解では、以下はWCFRestサービスからカスタムエラーを適切にスローするはずです。

[DataContract(Namespace = "")]
public class ErrorHandler
{
    [DataMember]
    public int errorCode { get; set; }

    [DataMember]
    public string errorMessage { get; set; }
} // End of ErrorHandler

public class Implementation : ISomeInterface
{
    public string SomeMethod()
    {
        throw new WebFaultException<ErrorHandler>(new ErrorHandler()
        {
            errorCode = 5,
            errorMessage = "Something failed"
        }, System.Net.HttpStatusCode.BadRequest);
    }
}

Fiddlerでは、これは機能しているようです。次の生データを取得します。

HTTP/1.1 400 Bad Request
Cache-Control: private
Content-Length: 145
Content-Type: application/xml; charset=utf-8
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
Set-Cookie: ASP.NET_SessionId=gwsy212sbjfxdfzslgyrmli1; path=/; HttpOnly
X-Powered-By: ASP.NET
Date: Thu, 03 May 2012 17:49:14 GMT

<ErrorHandler xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><errorCode>5</errorCode><errorMessage>Something failed</errorMessage></ErrorHandler>

しかし今、私のクライアント側には次のコードがあります。

WebChannelFactory<ISomeInterface> client = new WebChannelFactory<ISomeInterface>(new Uri(targetHost));

ISomeInterface someInterface = client.CreateChannel();
try
{
  var result = someInterface.SomeMethod();
}
catch(Exception ex)
{
   // Try to examine the ErrorHandler to get additional details.
}

これで、コードが実行されると、キャッチにヒットし、System.ServiceModel.ProtocolException「リモートサーバーが予期しない応答を返しました:(400)BadRequest。」というメッセージが表示されます。この時点では、ErrorHandlerの詳細を確認する方法がないようです。誰かがこれに遭遇しましたか?この時点でErrorHanderの詳細を取得する方法はありますか?

4

1 に答える 1

4

WebChannelFactoryまたはChannelFactory、ジェネリックのみを開示しますCommunicationException。実際のエラーを返すには、IClientMessageInspector動作を使用するか、依存する必要があります。WebRequest

IClientMessageInspectorアプローチについては、このブログエントリのコメントを参照してください

アプローチについてはWebRequest、次のようにしてをキャッチできますWebException

try { }
catch (Exception ex)
{
    if (ex.GetType().IsAssignableFrom(typeof(WebException)))
    {
        WebException webEx = ex as WebException;
        if (webEx.Status == WebExceptionStatus.ProtocolError)
        {
            using (StreamReader exResponseReader = new StreamReader(webEx.Response.GetResponseStream()))
            {
                string exceptionMessage = exResponseReader.ReadToEnd();
                Trace.TraceInformation("Internal Error: {0}", exceptionMessage);
            }
        }
    }
}
于 2012-05-03T18:35:57.093 に答える