Techies -- maxReceivedMessageSize を増やしてデフォルトの basicHttpBinding だけを使用しようとしましたが、readQuotas を増やす必要があることがわかりました。これはバインディングに名前を付けないと定義できませんでした。
<bindings>
<basicHttpBinding>
<binding name="DefaultBasicHttpBinding"
maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647"
maxBufferSize="2147483647">
<readerQuotas
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647" />
</binding>
</basicHttpBinding>
</bindings>
クライアントの web.config が basicHttp を参照する方法を変更する必要がありますか? ここに私が持っているものがあります:
<bindings>
<!-- Adding TelapointWorkFlowService Bindings -->
<!-- NOTE: May need to be converted for AppDev standards, leave as is for now. -->
<basicHttpBinding>
<binding name="BasicHttpBinding_TelaPointSMService" closeTimeout="00:10:00"
openTimeout="00:10:00" receiveTimeout="00:15:00" sendTimeout="00:10:00"
allowCookies="false" bypassProxyOnLocal="false"
hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647"
maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>