我在IIS中托管了一个WCF .svc文件。我想使用basicHTTP绑定。此服务作业是通过net.tcp实际调用另一个服务。一切都在本地工作正常,但是当我部署时,我收到了这个错误。
提供的URI方案'http'是 无效;预计'net.tcp'。参数 名称:通过
这是服务器配置
<client>
<endpoint address="net.tcp://localhost:9300/InternalInterfaceService"
binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IInternalInterfaceService"
contract="IInternalInterfaceService" name="NetTcpBinding_IInternalInterfaceService">
<identity>
<servicePrincipalName value="localhost" />
</identity>
</endpoint>
</client>
<services>
<service name="MyExternalService">
<endpoint address="" binding="basicHttpBinding" contract="IMyExternalService" />
</service>
</services>
这是svcutil生成的配置
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IMyExternalService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://myserver.somesdomain.com/Services/MyExternalService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IMyExternalService"
contract="IMyInternalService" name="BasicHttpBinding_IMyExternalService" />
</client>
</system.serviceModel>
我需要做些什么来正确连接它。我不想通过http公开InternalInterfaceService。我在这里做错了什么?任何提示或建议当然值得赞赏。
谢谢,
〜CK
答案 0 :(得分:2)
您需要一个路由服务 - 一个向全世界公开HTTP端点的服务,并在内部使用netTcp。
基本上,您的外向http服务必须成为客户端,以便调用内部netTcp服务。
您可以通过一些努力在.NET 3.5中完成此操作:
或者您可以在.NET 4 / VS 2010中使用新的WCF 4路由服务: