我正在创建一个测试工具来强调加载服务器。我创建了许多不同的线程,向服务器发送单独的请求。它似乎受到ChannelFactory的限制。它是进行实际服务呼叫的瓶颈,例如:
_proxy.MyServiceCall(...);
我尝试了几种不同的方法:
所有这些导致相当类似的性能。通道工厂似乎正在使用全局静态可用连接池。我试过这个但是找不到任何东西。你能更多地了解这个吗?你认为我猜有一个静态的连接池是正确的吗?如果是这样,你知道如何配置它吗?
这是测试应用程序的当前配置:
<configuration>
<system.serviceModel>
<client>
<endpoint binding="wsHttpBinding" bindingConfiguration="SynchronizationServiceBinding" contract="My.Namespace.ISynchronizationService" name="ClientBinding">
</endpoint>
</client>
<bindings>
<wsHttpBinding>
<binding name="SynchronizationServiceBinding" maxBufferPoolSize="2147483647" maxReceivedMessageSize="10485760">
<security mode="Transport">
<transport clientCredentialType="None"/>
</security>
<reliableSession enabled="false"/>
<readerQuotas maxArrayLength="1000000"/>
</binding>
</wsHttpBinding>
</bindings>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup> </configuration>
答案 0 :(得分:4)
事实证明,我需要做的就是为system.net connectionManagement添加配置:
<system.net>
<connectionManagement>
<add address = "*" maxconnection = "1000" />
</connectionManagement>
</system.net>
请参阅: Element (Network Settings)
请注意,此主题中的问题与我遇到的问题相同:IIS/WAS only handles two requests per client in parallel