gpt4 book ai didi

c# - SOAP WCF Webservice 在本地或远程调用时表现不同

转载 作者:太空宇宙 更新时间:2023-11-03 14:30:11 25 4
gpt4 key购买 nike

我有一个 WCF SOAP 1.1 Web 服务,其配置如下。

对该端点的任何方法的并发调用都会挂起,直到另一个方法在远程调用(从网络上的另一台计算机)返回时返回。

当这些方法在本地调用时(客户端位于同一台机器上),我无法复制它。

我尝试增加 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>

最佳答案

这是一个客户端问题,System.Net 控制 HttpWebRequest 使用的出站 TCP 连接数默认为每个端点 2 个:

ServicePointManager.DefaultConnectionLimit = 10;

关于c# - SOAP WCF Webservice 在本地或远程调用时表现不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2833391/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com