我有一个WCF SOAP 1.1 Webservice,其配置如下。
对此端点的任何方法的并发调用将挂起,直到另一个方法在远程调用时返回(从网络上的另一台计算机)。
当在本地调用这些方法时(我的客户端位于同一台机器上),我无法复制此内容。
我试图增加maxConcurrentCalls而没有运气......根据客户端本地/远程位置,服务行为似乎有所不同。有什么猜测吗?
在查看并发调用方案的ServiceModelEndpoint性能计数器时,结果很有趣:远程“未完成的调用”达到2个调用的限制...而20个并发线程的本地调用最多可达到18个“未完成的调用” ! 2“远程”呼叫的限制似乎是“每个进程”。
谢谢,
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<services>
<service behaviorConfiguration="MyCustomBehavior" name="CONTOSO.CONTOSOServerApi.IContosoServiceApiImplV1">
<endpoint address="" binding="customBinding" bindingConfiguration="WebBinding"
bindingNamespace="http://contoso.com" contract="CONTOSO.CONTOSOServerApiInterfaceV1.IContosoServiceApiV1" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="MyCustomBehavior">
<serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8080/MyEndPointV1" />
<serviceDebug httpHelpPageEnabled="false" includeExceptionDetailInFaults="true" />
<serviceThrottling maxConcurrentSessions="10000" maxConcurrentCalls="1000"/>
<dataContractSerializer maxItemsInObjectGraph="2147483647" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<customBinding>
<binding name="WebBinding">
<textMessageEncoding messageVersion="Soap11" maxReadPoolSize="2147483647" maxWritePoolSize="2147483647">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
</textMessageEncoding>
<httpsTransport />
</binding>
</customBinding>
</bindings>
</system.serviceModel>
</configuration>
答案 0 :(得分:1)
这是客户端问题,System.Net控制HttpWebRequest使用的出站TCP连接数默认为每个端点2个:
ServicePointManager.DefaultConnectionLimit = 10;