私が得るエラーは次のとおりです。
オブジェクト グラフでシリアライズまたはデシリアライズできるアイテムの最大数は 65536 です。オブジェクト グラフを変更するか、MaxItemsInObjectGraph クォータを増やしてください。
ここに私のapp.configがあります:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<netTcpBinding>
<binding name="NetTcpBinding_IClusterControllerService">
<readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
<binding name="NetTcpBinding_IClusterManagementService">
<readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" />
</binding>
</netTcpBinding>
</bindings>
<client>
<endpoint
address="some_address"
binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IClusterControllerService"
contract="ClusterControllerService.IClusterControllerService"
name="NetTcpBinding_IClusterControllerService"
behaviorConfiguration="BigObjectGraphBehavior">
</endpoint>
<endpoint
address="some_address"
binding="netTcpBinding"
bindingConfiguration="NetTcpBinding_IClusterManagementService"
contract="ClusterManagementService.IClusterManagementService"
name="NetTcpBinding_IClusterManagementService"
behaviorConfiguration="BigObjectGraphBehavior">
</endpoint>
</client>
<behaviors>
<endpointBehaviors>
<behavior name="BigObjectGraphBehavior">
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
maxItemsInObjectGraph 設定が有効になっていないようです。この設定を設定する必要がある別の場所はありますか?