2

Windows サービスでホストしている自己ホスト型の WCF サービスがあります。私のバインディングはbasicHttpBindingとして設定されています。

サービスを実行しているときに netsh http show servicestate を実行すると、サービスがリッスンしていることがわかります。ただし、パラメーターを適切に構成できないようです。

IIS でホストすると、パフォーマンスが約 20% 遅くなるため、自己ホストしたいと考えています。自己ホスト型 WCF サービスのパラメーターを IIS に一致するように構成するにはどうすればよいですか? 私が特に注目しているパラメーターは、タイムアウト、最大接続数、タイムアウト、および最大要求数です。Service Behavior を入れようとしました。ただし、何もしません。HTTP/Parameters の下のレジストリに MaxConnections を追加しましたが、うまくいきませんでした。どんな助けでも大歓迎です。

IIS でホストされている場合の出力は次のとおりです。

Server session ID: F9000000200015DA

    Version: 2.0
    State: Active
    Properties:
        Max bandwidth: 4294967295
        Timeouts:
            Entity body timeout (secs): 120
            Drain entity body timeout (secs): 120
            Request queue timeout (secs): 65535
            Idle connection timeout (secs): 120
            Header wait timeout (secs): 120
            Minimum send rate (bytes/sec): 240
    URL groups:
    URL group ID: F600000040001737
        State: Active
        Request queue name: MyService
        Properties:
            Max bandwidth: inherited
            Max connections: 4294967295
            Timeouts:
                Entity body timeout (secs): 120
                Drain entity body timeout (secs): 120
                Request queue timeout (secs): 65535
                Idle connection timeout (secs): 120
                Header wait timeout (secs): 0
                Minimum send rate (bytes/sec): 0
            Logging information:
                Log directory: C:\inetpub\logs\LogFiles\W3SVC2
                Log format: 0
            Authentication Configuration:
                Authentication schemes enabled:
            Number of registered URLs: 1
            Registered URLs:
                HTTP://*:80/

Request queues:
    Request queue name: MyService
        Version: 2.0
        State: Active
        Request queue 503 verbosity level: Basic
        Max requests: 3000
        Number of active processes attached: 1
        Controller process ID: 1400
        Process IDs:

セルフホスティング時の出力は次のとおりです。

Server session ID: FC00000120000229

    Version: 2.0
    State: Active
    Properties:
        Max bandwidth: 4294967295
        Timeouts:
            Entity body timeout (secs): 120
            Drain entity body timeout (secs): 120
            Request queue timeout (secs): 120
            Idle connection timeout (secs): 120
            Header wait timeout (secs): 120
            Minimum send rate (bytes/sec): 150
    URL groups:
    URL group ID: FB000001400005DE
        State: Active
        Request queue name: Request queue is unnamed.
        Properties:
            Max bandwidth: inherited
            Max connections: inherited
            Timeouts:
                Timeout values inherited
            Number of registered URLs: 1
            Registered URLs:
                HTTP://+:80/MyService/

Request queues:
    Request queue name: Request queue is unnamed.
        Version: 2.0
        State: Active
        Request queue 503 verbosity level: Basic
        Max requests: 1000

これが私のサービス構成ファイルです:

<?xml version="1.0"?> <configuration>   <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="MyThrottle">
          <serviceThrottling maxConcurrentCalls="3000" maxConcurrentSessions="3000"
            maxConcurrentInstances="12500" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <basicHttpBinding>
        <binding name="MyConfig" closeTimeout="00:10:00"
          openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00"
          maxReceivedMessageSize="10485760" useDefaultWebProxy="false">
          <readerQuotas maxDepth="999999999" maxStringContentLength="999999999"
            maxArrayLength="999999999" maxBytesPerRead="999999999" maxNameTableCharCount="999999999" />
          <security mode="None">
            <transport clientCredentialType="None" />
          </security>
        </binding>
      </basicHttpBinding>
    </bindings>
    <services>
      <service behaviorConfiguration="MyThrottle" name="This.MyService">
        <endpoint address="http://localhost:80/MyService" binding="basicHttpBinding"
          bindingConfiguration="MyConfig" name="MyService"
          contract="This.IMyService" />
      </service>
    </services>   </system.serviceModel> </configuration>
4

1 に答える 1

0

Microsoft HTTP.SYS チームからの公式の回答は次のとおりです。

「Max Connections」= HttpServerConnectionsProperty の出力は、「Max Requests」= HttpServerQueueLengthProperty とは異なる意味を持ちます。

HttpListener では、URL グループの Max Connections プロパティ (HttpServerConnectionsProperty) または要求キューの Max requests プロパティ (HttpServerQueueLengthProperty) を設定できないため、WCF は、コードを介して自己ホストするときに http.sys 設定を設定できません。

于 2013-01-30T16:36:42.833 に答える