.Net WCF サービスで次の例外が断続的に発生します。「 http://MyServer/TestWCF/MyService.svcにある HTTP サービスがビジー状態です。」
ここで何か不足していますか?
基本的な http バインディングを使用しており、WCF スロットリングを有効にしています。
<basicHttpBinding>
<binding name="BasicHttpBinding_MyService" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-16" sendTimeout="00:01:00" >
<readerQuotas maxStringContentLength="2147483647" maxArrayLength="163840000"
maxDepth="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="16384" />
</binding>
. . . .
<behavior name="MyWCFServices.MyServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceThrottling
maxConcurrentCalls="16"
maxConcurrentInstances="2147483647"
maxConcurrentSessions="10"/>
</behavior>
スロットリングは問題の解決に役立ちますか? また、トラフィックの多い Web サイトのスロットリングに推奨されるパラメーター値を教えてください。