silverlight   发布时间:2022-05-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了silverlight – 合同需要Duplex,但Binding’BasicHttpBinding’不支持它,或者没有正确配置以支持它大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

概述

我已经按照本教程构建了聊天应用程序.当我尝试添加我的服务的引用时,我收到以下错误: Contract requires Duplex, but Binding ‘BasichttpBinding’ doesn’t support it or isn’t configured properly to support it. 我的web.config如下: <extensions> <bindin
我已经按照本教程构建了聊天应用程序.当我尝试添加我的服务的引用时,我收到以下错误

我的web.config如下:

<extensions>
  <bindingExtensions>
    <add name="pollingDuplex" type="System.serviceModel.Configuration.PollingDuplexhttpBindingCollectionElement,System.serviceModel.PollingDuplex,Version=4.0.0.0,Culture=neutral,PublicKeyToken=31bf3856ad364e35" />
  </bindingExtensions>
</extensions>

<bindings>      
  <pollingDuplex>
    <binding name="chatPollingDuplex" duplexMode="MultiplemessagesPerPoll"/>
  </pollingDuplex>
</bindings>    

<services>      
  <service name="PrototypeSite.Chatservice">        
    <endpoint address="" binding="pollingDuplex" bindingConfiguration="chatPollingDuplex" contract="PrototypeSite.Chatservice" />
    <endpoint address="mex" binding="wsDualhttpBinding" contract="IMetadataExchange"/>
  </service>      
</services>

解决方法

当我遇到这个错误时,它给我带来了很多痛苦,但解决方案很简单 – 在web.config中仔细检查服务名称.

无论您是否在同一Web组件中提供服务,您都必须包含服务的完整Typename

大佬总结

以上是大佬教程为你收集整理的silverlight – 合同需要Duplex,但Binding’BasicHttpBinding’不支持它,或者没有正确配置以支持它全部内容,希望文章能够帮你解决silverlight – 合同需要Duplex,但Binding’BasicHttpBinding’不支持它,或者没有正确配置以支持它所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。