繁体   English   中英

在Azure下部署时wsDualHttpBinding不起作用

[英]wsDualHttpBinding Not Working When Deployed Under Azure

WCF双工无法在Azure下运行。 在IIS Express下一切正常。 我知道双工绑定由于服务器回调而出现问题,但是....我已经关闭了防火墙。 TCPView(Sysinternals)显示客户端正在发送/接收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的书中,“对WCF服务进行编程:掌握WCF和Azure AppFabric服务总线”:

WSDualHttpBinding几乎是不可用的,因为实际上不可能穿越各种将服务与客户端隔离开的通信障碍,并且需要找到特定的Web服务器机器使这不切实际。

我通过简单地使用netTcpBinding来解决了我的问题。...您只需要使 IIS可以使用TCP协议即可。 那里有很多文章解释如何做。 这是一个: http : //msdn.microsoft.com/en-us/library/ms731053.aspx

干杯。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM