4

MVC4 / ASP.NETWebApiにサービスを実装しています。システムがメンテナンスのためにダウンしたときに、カスタム503メッセージをクライアントに返したいのですが。

私は次のコードを持っています:

    public class ServiceController : ApiController
    {
        public HttpResponseMessage<ServiceUnavailableModel> Get()
        {
            return new HttpResponseMessage<ServiceUnavailableModel>(new ServiceUnavailableModel(), HttpStatusCode.ServiceUnavailable);
        }
    }

私のモデルは次のようになります。

    [Serializable]
    public class ServiceUnavailableModel : ISerializable
    {
        public ServiceUnavailableModel()
        {
            this.Message = Resources.SDE_SERVICE_UNAVAILABLE;
            this.Detail = Resources.SDE_SERVICE_REQUESTED_CURRENTLY;
            this.Code = (int)System.Net.HttpStatusCode.ServiceUnavailable;
        }

        public string Message { get; set; }
        public string Detail { get; set; }
        public int Code { get; set; }

        public virtual void GetObjectData(SerializationInfo info, StreamingContext context)
        {
            info.AddValue("Message", this.Message);
            info.AddValue("Detail", this.Detail);
            info.AddValue("Code", this.Code);
        }

    }

これは、私の現在のAPIクライアントの多くが期待していることです。ただし、このアクションを実行すると、次の結果が得られます。

HTTP/1.1 503 Service Unavailable
Cache-Control: no-cache
Pragma: no-cache
Content-Type: text/html
Expires: -1
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Mon, 14 May 2012 20:22:39 GMT
Content-Length: 200

The service is unavailable.The service you requested is currently
unavailable or undergoing maintenance. We will have the service back
up and running shortly. Thank you for your patience.","Code":503}

私の応答が部分的にシリアル化されているように見えることに注意してください。何が得られますか?

PS。Response.Clear()とResponse.ClearContent()を試しました-運がありません

4

2 に答える 2

2

パススルーするようにhttpエラーを構成する必要があることがわかりました。

<configuration>
  <system.webServer>
    <httpErrors existingResponse="PassThrough"/>
  </system.webServer>
<configuration>
于 2012-05-22T13:19:25.067 に答える
0

Global.asaxにApplication_Errorイベントを登録し、response.statuscodeをキャッチします。503の場合は、コントローラーに適切なメッセージを返します。

次の投稿で私の答えを見てください

Spring MVC 3:HTTP 404エラーのエラーページに動的コンテンツを提供するにはどうすればよいですか?

于 2012-05-18T11:59:38.410 に答える