0

如果我在 IIS 中托管时添加对它的引用,我有一个运行正常的 WCF 服务,但是当我尝试在 win 应用程序客户端应用程序中托管它时找不到它。这仅在我使用 NetTcpBinding 时发生。我收到错误“net.tcp://localhost:5566/ 上没有可以接受消息的端点监听”。当我使用 basicHttpBinding 时,一切正常。

这是服务的配置文件

<system.serviceModel>
<services>
  <service name="TestWcfService.Service1" behaviorConfiguration="TestWcfService.Service1Behavior">
    <!-- Service Endpoints -->
    <endpoint address="" binding="netTcpBinding" contract="TestWcfService.IService1">
      <!-- 
          Upon deployment, the following identity element should be removed or replaced to reflect the 
          identity under which the deployed service runs.  If removed, WCF will infer an appropriate identity 
          automatically.
      -->
      <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="TestWcfService.Service1Behavior">
      <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
      <serviceMetadata httpGetEnabled="false"/>
      <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
      <serviceDebug includeExceptionDetailInFaults="false"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

这是来自主机应用程序的代码

ServiceHost host = new ServiceHost(typeof(Service1), new Uri("net.tcp://localhost:5566"));
ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
behavior.HttpGetEnabled = false;
host.Description.Behaviors.Add(behavior);
host.AddServiceEndpoint(typeof(IService1), new NetTcpBinding(), "Service1");
host.AddServiceEndpoint(typeof(IMetadataExchange), new NetTcpBinding(), "MEX");
host.Open();
4

1 回答 1

0

当您像这样添加 TCP 端点时:

ServiceHost host = new ServiceHost(typeof(Service1), 
                                   new Uri("net.tcp://localhost:5566"));

host.AddServiceEndpoint(typeof(IService1), new NetTcpBinding(), "Service1");

那么您的服务地址将是net.tcp://localhost:5566/Service1(构造函数中定义的基地址ServiceHost,加上AddServiceEndpoint调用中定义的相对地址)-您是否尝试过在那里发送消息?

于 2010-12-23T16:38:27.790 回答