WCFで、各行に10個のデータを含む54000個以上のデータ行を返すWebサービスを作成しました。私はwsHttpBindingを使って通信しています。このサービスは少ないデータ(つまり2000行)でうまく動作しますが、50000+行(〜2MB)の大きなレコードセットを送信しようとすると爆発します。例外メッセージは次のようなものですWCFサービスで大量のデータを転送する
http://localhost:9002/MyService.svc
へのHTTP応答の受信中にエラーが発生しました。これは、サービスエンドポイントがHTTPプロトコルを使用しないでバインドすることが原因である可能性があります。これは、(おそらくサービスのシャットダウンのために)サーバーによって中止されたHTTP要求コンテキストが原因である可能性もあります。詳細はサーバーログを参照してください。
クライアントサイドでページネーションを使用するように教えてください。問題が解決することがわかります。しかし、私はクライアント側でデータ全体を必要としています。サーバー上の
私のサービス構成は
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="MyWsHttpBinding" />
</wsHttpBinding>
</bindings>
<services>
<service name="AdminService">
<endpoint address="AdminSrv"
binding="wsHttpBinding"
contract="IAdminService"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="/Bus/IRfotoWCF" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- 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>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true"></serviceHostingEnvironment>
</system.serviceModel>
として私のクライアント構成である誰かが両方のクライアント側とサーバー側でexcact構成で私を助けるだろう
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IAdminService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost/TestService/AdminService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAdminService"
contract="IAdminService" name="BasicHttpBinding_IAdminService" />
</client>
</system.serviceModel>
ようです。たとえ私がバインドを変更する必要があっても、wsHttpBindingからnetTcpBinding - 私はそれを行うことに問題はありません。前もって感謝します。
私は分かりません。 1つのサービスが5.20分に別のサービスを待っているときは、本当に良い解決策ですか?ここではアーキテクチャに関する大きな疑問があると思いますが、私は解決策を見つけることができません。 – Vladislav
大きなデータを転送しながら速度をテストし続けます。 "Chunks"メソッドを使用すると、私は300 000(!)の行を送り、サービスの設定を変更せずに4.34分以内にデータベースに保存することができます。私はちょうど50行のチャンクのために私のデータを分けています。 – Vladislav
XMLの代わりにDatacontractシリアライザを使用する必要があります。これは、これまでのところ、reference.cs内の手動置換ジョブです。 – NickD