0

.NET 3.5 で開発された REST WCF アプリケーションがあります。

たとえば、パラメーターの欠落などの無効なリクエスト URL をチェックするには、「IErrorHandler」インターフェイスを実装するクラスを使用しています。したがって、そのクラス内には、BadRequest エラー コードとメッセージを生成することになっている次のコード セクションがあります。

public void ProvideFault(Exception error, MessageVersion version, ref Message fault)
        {
            ExceptionHelper.HandleException(error, Severity.Error);
            StatusResponseBE statusResponseEntity = new StatusResponseBE();
            statusResponseEntity.Code = STATUS_CODE_FAIL;
            statusResponseEntity.Message = "Failed to perform requested operation";
            statusResponseEntity.Errors = new ErrorResponseBECollection();

            if (error is SerializationException || error is InvalidOperationException)
            {
                statusResponseEntity.Errors.Add(new ErrorResponseBE()
                {
                    Code = EX_INVALID_REQUEST_CODE,
                    Description = "Invalid Request"
                });
                fault = Message.CreateMessage(version, string.Empty, statusResponseEntity, new DataContractJsonSerializer(typeof(StatusResponseBE)));
                fault.Properties.Add(WebBodyFormatMessageProperty.Name, new WebBodyFormatMessageProperty(WebContentFormat.Json));
                WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.BadRequest;
                return;
            }
            else
            {
                statusResponseEntity.Errors.Add(new ErrorResponseBE()
                {
                    Code = EX_INTERNAL_ERROR_CODE,
                    Description = "Internal Error"
                });
                fault = Message.CreateMessage(version, string.Empty, statusResponseEntity, new DataContractJsonSerializer(typeof(StatusResponseBE)));
                fault.Properties.Add(WebBodyFormatMessageProperty.Name, new WebBodyFormatMessageProperty(WebContentFormat.Json));
                WebOperationContext.Current.OutgoingResponse.StatusCode = HttpStatusCode.InternalServerError;
                return;

            }

        }

しかし、無効なリクエスト URL で WCF サービスをヒットすると、BadReqest エラー コード 400 が返されますが、応答 JSON に "Code : 400 ; Message : Invalid Request" のようなメッセージは表示されません。

HTTP/1.1 400 Bad Request
Cache-Control: private
Content-Type: application/xml; charset=utf-8
Server: Microsoft-IIS/7.0
Access-Control-Allow-Origin: *
X-AspNet-Version: 2.0.50727
Set-Cookie: ASP.NET_SessionId=xz412e35vruepr45qjrp5lyw; path=/; HttpOnly
X-Powered-By: ASP.NET
Date: Thu, 03 May 2012 14:47:15 GMT
Content-Length: 1165

<?xml version="1.0" encoding="utf-8"?><HTML><HEAD><STYLE type="text/css">#content{ FONT-SIZE: 0.7em; PADDING-BOTTOM: 2em; MARGIN-LEFT: 30px}BODY{MARGIN-TOP: 0px; MARGIN-LEFT: 0px; COLOR: #000000; FONT-FAMILY: Verdana; BACKGROUND-COLOR: white}P{MARGIN-TOP: 0px; MARGIN-BOTTOM: 12px; COLOR: #000000; FONT-FAMILY: Verdana}PRE{BORDER-RIGHT: #f0f0e0 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #f0f0e0 1px solid; MARGIN-TOP: -5px; PADDING-LEFT: 5px; FONT-SIZE: 1.2em; PADDING-BOTTOM: 5px; BORDER-LEFT: #f0f0e0 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #f0f0e0 1px solid; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e5e5cc}.heading1{MARGIN-TOP: 0px; PADDING-LEFT: 15px; FONT-WEIGHT: normal; FONT-SIZE: 26px; MARGIN-BOTTOM: 0px; PADDING-BOTTOM: 3px; MARGIN-LEFT: -30px; WIDTH: 100%; COLOR: #ffffff; PADDING-TOP: 10px; FONT-FAMILY: Tahoma; BACKGROUND-COLOR: #003366}.intro{MARGIN-LEFT: -15px}</STYLE>
<TITLE>Request Error</TITLE></HEAD><BODY>
<DIV id="content">
<P class="heading1">Request Error</P>
<BR/>
<P class="intro">The server encountered an error processing the request. See server logs for more details.</P>
<P class="intro"></P>
</DIV>
</BODY></HTML>

代わりに、Fiddler の Raw タブで上記を取得しています。

なぜこれが起こっているのか、それを解決するために何ができるのか考えていますか? それは私をたくさん悩ませてきました、そして私はすべてを試しましたが、それがうまくいくようには見えません。

4

2 に答える 2

0

これは、そのサービスに使用していると想定している WebServiceHost の問題です。WCF Rest Starter Kit 2 の WebServiceHost2 を使用すると、WebProtocolExceptions をスローして、エラーのカスタム json ペイロードを指定できます。

詳細については、これを確認できます http://www.robbagby.com/rest/effective-error-handling-with-wcf-rest/

于 2012-05-03T15:23:37.693 に答える
0

これを試して

var message = ex.GetOriginalMessage();
var statusCode = (ex is MyDomainException || ex.GetType().IsSubclassOf(typeof (MyDomainException)))
                        ? HttpStatusCode.BadRequest
                        : HttpStatusCode.InternalServerError;

var context = WebOperationContext.Current;

if (context == null || context.IncomingRequest.ContentType.ToLower().Contains("json"))
    throw new WebProtocolException(statusCode, statusCode.ToString(), message, null);

throw new WebProtocolException(statusCode, statusCode.ToString(), new XElement("Detail", message), false, null);
于 2014-10-01T18:37:58.557 に答える