wsDualHttpBinding 在 Azure 下部署时不起作用
本文关键字:不起作用 部署 Azure wsDualHttpBinding | 更新日期: 2023-09-27 18:35:11
WCF Duplex 在 Azure 下不起作用。在IIS Express下一切正常。我知道由于服务器回调,双工绑定有问题,但是....我已经关闭了防火墙。TCPView(系统内部)显示客户端发送/接收的10到12个数据包,然后它就死了......什么也没发生。我尽可能将所有超时设置为 10 分钟。
请参阅下面的配置文件。
服务器配置:
<system.serviceModel>
<services>
<service behaviorConfiguration="MexBehaviour" name="MySrvc">
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="wsDualHttpBinding"
name="wsDualEndpoint" bindingName="wsDualHttpBinding" contract="IMySrvc" />
<endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="mexHttpBinding"
name="MexEndpoint" bindingName="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://srvc.azurewebsites.net/MySrvc.svc" />
</baseAddresses>
<timeouts openTimeout="00:10:00" />
</host>
</service>
</services>
<bindings>
<wsDualHttpBinding>
<binding name="wsDualHttpBinding" openTimeout="00:10:00" sendTimeout="00:10:00"
clientBaseAddress="http://xxx.xxx.xxx.xxx:xxx">
<security mode="None">
<message clientCredentialType="None" negotiateServiceCredential="false" />
</security>
</binding>
</wsDualHttpBinding>
<mexHttpBinding>
<binding name="mexHttpBinding" />
</mexHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="MexBehaviour">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
客户端配置:
<system.serviceModel>
<bindings>
<wsDualHttpBinding>
<binding name="wsDualEndpoint">
<security mode="None" />
</binding>
</wsDualHttpBinding>
</bindings>
<client>
<endpoint address="http://srvc.azurewebsites.net/MySrvc.svc"
binding="wsDualHttpBinding" bindingConfiguration="wsDualEndpoint"
contract="SrvcRef.IMySrvc" name="wsDualEndpoint" />
</client>
</system.serviceModel>
我知道
这个wsDualHttpBinding没有通过"气味测试"......摘自 Juval Lowy 的著作《Programming WCF Services: Mastering WCF and the Azure AppFabric Service Bus》:
。WSDualHttpBinding 大多无法使用,因为实际上不可能通过隧道穿过将服务与客户端分开的各种通信障碍,并且需要找到特定的 Web 服务器机器使得这不切实际。
我通过简单地使用 netTcpBinding 来解决我的问题......您只需要让 IIS 使用 TCP 协议即可。有很多文章解释了如何做到这一点。这是其中之一:http://msdn.microsoft.com/en-us/library/ms731053.aspx
干杯。