WCF:单向回调有问题
Posted
技术标签:
【中文标题】WCF:单向回调有问题【英文标题】:WCF: Having trouble with one-way callbacks 【发布时间】:2011-05-15 11:08:22 【问题描述】:在从 WCF 服务调用 WPF 客户端的单向回调时,我不断收到这个令人费解的错误。
消息无法传输 在分配的超时时间内 00:01:00。没有可用空间 在可靠通道的传输中 窗户。分配给这个的时间 操作可能是一个 更长的超时时间。
它没有发送太多数据,只是一个字符串列表,其中只有一个短字符串。
我的服务器有以下配置:
<xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="RawDealService.GameService">
<endpoint address ="" binding="wsDualHttpBinding" bindingConfiguration="basicConfig" contract="MyService.IGameService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
</service>
</services>
<bindings>
<wsDualHttpBinding>
<binding name="basicConfig" messageEncoding="Text">
<security mode="None"/>
</binding>
</wsDualHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
我的客户有以下配置:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<wsDualHttpBinding>
<binding name="WSDualHttpBinding_IGameService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00" />
<security mode="None">
<message clientCredentialType="Windows" negotiateServiceCredential="true" />
</security>
</binding>
</wsDualHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:44259/GameService.svc" binding="wsDualHttpBinding"
bindingConfiguration="WSDualHttpBinding_IGameService" contract="IGameService"
name="WSDualHttpBinding_IGameService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" />
</startup>
</configuration>
考虑到消息相对较小并且回调只是单向的,这可能会发生令人困惑。我应该尝试一些不同的绑定吗?
【问题讨论】:
你能发布你的服务接口类(也是回调接口) @Rev 见下文。我发现了问题,但直到明天才能接受我自己的答案。还是谢谢! 【参考方案1】:我发现了这个问题,很遗憾这个特定的错误消息让我走上了完全错误的道路。
我的 DataContract 设置中有一些具有继承性的类,我没有正确标记 KnownType
s。
我的猜测是客户端尝试反序列化关联对象并失败了。框架一定没有很好地处理错误,也许它一直试图一遍又一遍地发送,一分钟后没有得到响应。
也许如果我有一个双向调用,我会得到一个信息更丰富的堆栈跟踪。
【讨论】:
【参考方案2】:闻起来像是阻塞/线程问题,而不是网络问题。
您是否有任何机会阻止/等待在客户端收到单向消息?如果是这样,并且您正在使用同步上下文,那么您将死锁 WCF - 阻塞等待消息的消息队列,而在解除阻塞消息队列之前无法接收消息。
如果是这种情况,您需要在客户端上设置UseSynchronizationContext=false
,或者避免在等待接收消息时阻塞。
也就是说,我对 WsDualHttpBinding 没有太多经验。
【讨论】:
好主意。我已经在这个项目中遇到了相当多的线程问题。不幸的是,这个问题似乎不是其中之一(见下面我的回答)。以上是关于WCF:单向回调有问题的主要内容,如果未能解决你的问题,请参考以下文章