我有一个带有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>
这当然适用于本地,但显然不在互联网上。
我的第二个问题是虽然我实施的服务在本地工作得非常好,但似乎从外面看不到。 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" />
对此我不熟悉,我有信心我做了一些非常基本的错误!
非常感谢提前。 道
答案 0 :(得分:0)
基于TCP的Internet连接非常困难,因为Internet不是TCP友好的。线路上的任何防火墙/路由器都可以简单地阻止您的流量,并且也很难排除故障,因为您需要深入了解互联网。因此,netTcp通常仅限于Intranet或localhost使用。
您必须坚持使用基于HTTP / HTTPS的绑定。