1. ホーム
  2. c#

大規模なWCFウェブサービスリクエストが(400) HTTP Bad Requestで失敗する

2023-09-04 13:15:40

質問

この一見よくある問題に遭遇したのですが、解決することができません。

配列パラメータに比較的少ない数の項目 (私は 50 までテストしました) で WCF ウェブサービスを呼び出すと、すべてがうまくいきます。

WCF

しかし、もし私が500のアイテムでWebサービスを呼び出すと、Bad Requestエラーが発生します。

興味深いことに、私は ワイヤーシャーク を実行したところ、リクエストはサーバーに到達していないようです - 400 エラーはクライアント側で生成されています。

例外は

System.ServiceModel.ProtocolException: リモートサーバーから予期しないレスポンスが返されました。(400) Bad Request. ---> System.Net.WebException: リモートサーバーがエラーを返しました:(400) Bad Request.

system.serviceModel セクションは、私のクライアント設定ファイルの

 <system.serviceModel>
    <bindings>
        <wsHttpBinding>
            <binding name="WSHttpBinding_IMyService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647"
                messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                allowCookies="false">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="2147483647"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00"
                    enabled="false" />
                <security mode="None">
                    <transport clientCredentialType="Windows" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="Windows" negotiateServiceCredential="true"
                        establishSecurityContext="true" />
                </security>
            </binding>
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://serviceserver/MyService.svc"
            binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IMyService"
            contract="SmsSendingService.IMyService" name="WSHttpBinding_IMyService" />
    </client>
</system.serviceModel>

サーバー側では、私の web.config ファイルは以下のようになっています。 system.serviceModel セクションがあります。

<system.serviceModel>
    <services>
        <service name="MyService.MyService" behaviorConfiguration="MyService.MyServiceBehaviour" >
            <endpoint address="" binding="wsHttpBinding" bindingConfiguration="MyService.MyServiceBinding" contract="MyService.IMyService">
            </endpoint>
            <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
        </service>
    </services>
    <bindings>
      <wsHttpBinding>
        <binding name="MyService.MyServiceBinding">
          <security mode="None"></security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <behaviors>
        <serviceBehaviors>
            <behavior name="MyService.MyServiceBehaviour">
                <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
                <serviceMetadata httpGetEnabled="true"/>
                <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
                <serviceDebug includeExceptionDetailInFaults="true"/>
            </behavior>
        </serviceBehaviors>
    </behaviors>
</system.serviceModel>

私は を見た a かなり大きい 答え から この質問 成功しない .

どなたか助けていただけませんか?

どのように解決するのですか?

サーバー側でもmaxReceivedMessageSizeを4MBなどに設定してみてください。

<binding name="MyService.MyServiceBinding" maxReceivedMessageSize="4194304">

デフォルト(65535だと思う)がとても低い主な理由は、サービス拒否(DoS)攻撃のリスクを減らすためです。 サーバー上の最大要求サイズとクライアント上の最大応答サイズよりも大きく設定する必要があります。 イントラネット環境であれば、DoS 攻撃のリスクはおそらく低いので、必要と予想される値よりもはるかに高い値を使用しても安全でしょう。

ところで、WCF サービスへの接続に関する問題のトラブルシューティングのためのいくつかのヒントがあります。

  • で説明されているように、サーバー上でトレースを有効にします。 この MSDN の記事 .

  • 以下のようなHTTPデバッグツールを使用します。 フィドラー などの HTTP デバッグツールを使用して、HTTP トラフィックを検査します。