我有使用WPF和WCF的经验,使用WCF我可以设置maxConnection来限制每个服务的最大连接数。现在,我正在将该应用程序移动到Silverlight和WCF RIA,但我找不到该属性,因此它只能并行执行4个连接。
任何人都知道如何配置WCF RIA以接受更多连接?
答案 0 :(得分:0)
您是否尝试过这样的服务行为:
<serviceBehaviors>
<behavior name="MyBehavior">
<serviceThrottling
maxConcurrentCalls="4"
maxConcurrentSessions="4” />
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</serviceBehaviors>
设置MaxConcurrentSessions
值可能是解决方案。
希望这有帮助, indyfromoz