5

WCF サービスの ServiceBehavior の構成に問題があります。

いくつかの背景。基本的に、IIS で実行することになっている REST サービス WCF を開発しています。サービスによってスローされた例外をログに記録し (log4net を使用しています)、例外の種類に応じて HTTP ステータス コードを返す必要があります。サービスの実装には、WCF 関連のものについて最低限の知識を持たせたいので、サービスのどこでも例外を FaultException に変換したくありません。そのため、独自の IErrorHandler をサービス ホストに追加することが最善の方法であることがわかりました。

しかし、私の問題は、何を試しても、Web.config でカスタム ServiceBehavior の構成を正しく取得できないように見えることです。関連するコードは次のとおりです。

ウェブ構成。

<system.webServer>
  <modules runAllManagedModulesForAllRequests="true">
    <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  </modules>
</system.webServer>

<system.serviceModel>
  <behaviors>
    <serviceBehaviors>
      <behavior name="UsingErrorLogBehavior">
        <errorLogBehavior/>
      </behavior>
    </serviceBehaviors>
    <endpointBehaviors>
      <behavior>
        <webHttp/>
      </behavior>
    </endpointBehaviors>
  </behaviors>
  <extensions>
    <behaviorExtensions>
      <add name="errorLogBehavior"
           type="MyNameSpace.Web.ErrorExtensionElement, MyNameSpace.Web"/>
    </behaviorExtensions>
  </extensions>
  <serviceHostingEnvironment aspNetCompatibilityEnabled="true"/>
  <standardEndpoints>
    <webHttpEndpoint>
      <standardEndpoint name="" helpEnabled="true" 
                        automaticFormatSelectionEnabled="false" 
                        defaultOutgoingResponseFormat="Json" 
                        maxReceivedMessageSize="4194304" transferMode="Buffered" />
    </webHttpEndpoint>
  </standardEndpoints>
</system.serviceModel>

エラー拡張要素。

namespace MyNameSpace.Web
{
    public class ErrorExtensionElement : BehaviorExtensionElement
    {
        public override Type BehaviorType
        {
            get { return typeof(ErrorServiceBehavior); }
        }

        protected override object CreateBehavior()
        {
            return new ErrorServiceBehavior();
        }
    }
}

ErrorServiceBehavior。

namespace MyNameSpace.Web
{
    public class ErrorServiceBehavior : IServiceBehavior
    {
        public void AddBindingParameters(ServiceDescription serviceDescription, System.ServiceModel.ServiceHostBase serviceHostBase, System.Collections.ObjectModel.Collection<ServiceEndpoint> endpoints, System.ServiceModel.Channels.BindingParameterCollection bindingParameters)
        {
        }

        public void ApplyDispatchBehavior(ServiceDescription serviceDescription, System.ServiceModel.ServiceHostBase serviceHostBase)
        {
            foreach (ChannelDispatcher channelDispatcher in serviceHostBase.ChannelDispatchers)
            {
                channelDispatcher.ErrorHandlers.Add(new ExceptionModule());
            }
        }

        public void Validate(ServiceDescription serviceDescription, System.ServiceModel.ServiceHostBase serviceHostBase)
        {
        }
    }
}

ExceptionModule が IErrorHandler を実装する場所。

4

1 に答える 1

2

「UsingErrorLogBehavior」という名前の<serviceBehavior>セクションがありますが、そのセクションを参照しているサービス構成はありません。そのセクションをデフォルトのサービスの動作にするか (エンドポイントの動作のように名前を付けないことで)、<service>その動作を参照するサービスの要素を追加できます。

<services>
  <service name="YourNamespace.YourServiceName"
           behaviorConfiguration="UsingErrorLogBehavior">
    <endpoint address=""
              binding="webHttpBinding"
              contract="YourNamespace.YourContractName" />
  </service>
</services>
于 2012-11-22T17:32:55.170 に答える