0

TCPバインディングを使用するサービスがあり、このサービスにより、クライアントはデータベースと対話できます。私は EF と自己追跡エンティティを使用しています。

私がやりたいことの 1 つは、データベースにファイルを保存することです。そのため、ワイヤに過負荷をかけないように、対応するエンティティを含む 2 つのテーブルを用意しています。ドキュメントの情報 (タイプ、サイズなど) を含む 1 つのテーブル ドキュメントと、バイナリ情報 (ファイル) を格納する他のテーブル ファイル。

ローカルでは、クライアントとサービスを同じコンピューターで実行すると、必要なファイルを保存できます。6MBのファイルで試してみます。しかし、同じ LAN 内の別のコンピューターでクライアントを実行すると、多くの問題が発生します。

たとえば、50kB の小さなファイルを保存しようとすると問題はありませんが、6MB のファイルを保存しようとすると、さまざまなエラーが発生する可能性があります。

たとえば、クライアントで短いタイムアウト (たとえば 1 分) を構成すると、次のエラーが発生します。

System.TimeoutException: net.tcp://192.168.1.5:7997/CMMSHost に送信されたこの要求操作は、構成されたタイムアウト (00:01:00) 内に応答を受け取りませんでした。

クライアントのタイムアウトを 10 分に設定すると、次のエラーが発生します。

サーバーは意味のある応答を提供しませんでした

サービスは wpf アプリケーションでホストされており、ドキュメントをデータベースに追加するサーブの Begin メソッドで、呼び出しが受信されたかどうかを知るためにログ付きのテキストを送信します。いくつかのエラーが発生すると、コールが受信されないので、何らかの理由でセルフ タッキング エンティティがサービスに到達しないことが問題であると考えられます。

サービスの app.config は次のとおりです。

<endpoint address=""
                  binding="netTcpBinding"
                  bindingConfiguration="tcpBinding"
                  name="NetTcpBindingEndpoint"
                  contract="GTS.CMMS.Service.IService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>

        <endpoint contract="IMetadataExchange" binding="mexTcpBinding" address="net.tcp://localhost:5000/mex" />
      </service>
    </services>

    <behaviors>
      <serviceBehaviors>
        <behavior name="behaviorConfig">
          <!--
          <serviceMetadata httpGetEnabled="true" />-->
          <!--Necesario para poder enviar excepciones desde el servicio al cliente.-->
          <serviceDebug includeExceptionDetailInFaults="true"/>
          <serviceThrottling maxConcurrentCalls="100" maxConcurrentSessions="100" />
          <serviceMetadata/>
        </behavior>
      </serviceBehaviors>
    </behaviors>


    <bindings>
      <netTcpBinding>
        <binding name="tcpBinding" maxBufferSize="67108864"
                      maxReceivedMessageSize="67108864" maxBufferPoolSize="67108864"
                       transferMode="Buffered" closeTimeout="00:00:10"
                       openTimeout="00:00:10" receiveTimeout="00:20:00"
                       sendTimeout="00:01:00" maxConnections="100">
          <security mode="None"/>
          <readerQuotas maxArrayLength="67108864" maxBytesPerRead="67108864" maxStringContentLength="67108864"/>
          <reliableSession enabled="true" inactivityTimeout="00:20:00" />
        </binding>
      </netTcpBinding>
    </bindings>
  </system.serviceModel>

クライアント構成は次のとおりです。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="NetTcpBinding_IService" closeTimeout="00:01:00"
          openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00"
          transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
          hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288"
          maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:20:00"
            enabled="true" />
          <security mode="None">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
            <message clientCredentialType="Windows" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>
    <client>
      <endpoint address="net.tcp://192.168.1.5:7997/CMMSHost" binding="netTcpBinding"
        bindingConfiguration="NetTcpBinding_IService" contract="IService"
        name="NetTcpBinding_IService" />
    </client>
  </system.serviceModel>
</configuration>

問題がファイルのサイズであることを破棄しようとするために、大きな readquotes を使用しますが、問題は解決しません。

ありがとう。

4

1 に答える 1

1

これは WCF に関連する問題ではないと思います。IISにかなり関連していると思います。web.config で次のコード スニペットを試すことができますか?

<system.webServer>
        <security>
            <requestFiltering>
                <requestLimits maxAllowedContentLength="524288000"/>
            </requestFiltering>
        </security>
</system.webServer>
于 2012-06-26T15:07:21.843 に答える