0

我有一个带有 netTcp 绑定的 WCF 服务。这是我的第一个 WCF 服务,我遇到了一些端点问题。

我在开发阶段的目标是使用端口转发从我的开发机器公开服务。我已将 IIS7 默认网站配置为在端口 12345 上侦听 TCP,并创建了必要的绑定。该端口在我的防火墙上打开,端口在路由器上转发。Net.TCP 服务都在运行。我想我已经采取了这里文章中推荐的所有步骤!

但是,当我尝试使用服务 IP 地址处的 svc 文件在 Visual Studio 10 中添加服务引用时,它会创建一个像这样的端点,指向我的本地主机名(VULCAN):

<client>
    <endpoint address="net.tcp://vulcan:12345/CloudnetService/Dispatcher.svc"
        binding="netTcpBinding" bindingConfiguration="netTcpBinding_IDispatcher"
        contract="CloudnetService.IDispatcher" name="netTcpBinding_IDispatcher" />
</client>

这当然可以在本地工作,但显然不能在 Internet 上工作。

我的第二个问题是,虽然我实现的服务在本地运行良好,但从外部似乎看不到。Telnet localhost 12345 找到该服务。Netstat 显示正在侦听 TCP 的端口。但是当我 Telnet 我的 IP 和端口时,我得到“无法在端口 12345 上打开与主机的连接:连接失败”。

这是我的 web.config 中的 system.serviceModel 部分(---.---.-.-- 是我的 IP 地址的占位符):

<bindings>

  <netTcpBinding>
    <binding name="netTcpBinding_IDispatcher"
        closeTimeout="00:01:00"
        openTimeout="00:01:00"
        receiveTimeout="00:10:00"
        sendTimeout="00:01:00"
        transactionFlow="false"
        hostNameComparisonMode="StrongWildcard"
        maxBufferPoolSize="524288"
        maxReceivedMessageSize="65536">
      <readerQuotas
          maxDepth="32"
          maxStringContentLength="8192" maxArrayLength="16384"
          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <reliableSession
        ordered="true"
        inactivityTimeout="00:10:00" />
      <security mode="None">
        <message 
          clientCredentialType="None" 
          algorithmSuite="Default" />
      </security>
    </binding>
  </netTcpBinding>

</bindings>

<services>

  <service name="Service.Dispatcher">

    <endpoint address=""
      binding="netTcpBinding"
      bindingConfiguration="netTcpBinding_IDispatcher"
      contract="Service.Interfaces.IDispatcher"
      name="netTcpBinding_IDispatcher">
    </endpoint>

    <host>
      <baseAddresses>
        <add baseAddress="net.tcp://---.---.-.--:12345/CloudnetService"/>
      </baseAddresses>
    </host>      

  </service>

</services>

<behaviors>
  <serviceBehaviors>
    <behavior>
      <serviceMetadata httpGetEnabled="true"/>
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

<serviceHostingEnvironment multipleSiteBindingsEnabled="false" />

作为新手,我相信我在做一些非常基本的错误!

提前谢谢了。陶

4

1 回答 1

0

基于 TCP 的 Internet 连接非常困难,因为 Internet 不是 TCP 友好的。网络上的任何防火墙/路由器都可以简单地阻止您的流量,而且也很难排除故障,因为这是您必须潜入的互联网。所以通常 netTcp 仅限于 Intranet 或 localhost 使用。

您将不得不坚持使用基于 HTTP/HTTPS 的绑定。

于 2012-08-02T03:40:16.343 回答