使用 netTcp 绑定时添加服务引用

Posted

技术标签:

【中文标题】使用 netTcp 绑定时添加服务引用【英文标题】:Add service reference when using netTcp binding 【发布时间】:2013-02-22 14:54:36 【问题描述】:

我有一个 WCF 服务,我通过将其接口复制到示例客户端项目来测试。 现在我想通过添加服务引用来正常工作。 该服务托管在 Windows 托管中(使用 installUtil)。 该服务有 2 个项目 - 外部(接口 + 数据合同)和内部(实现)。 由于某种原因,它没有 app.config,所以我手动添加了一个:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <services>
      <service name="ExecutionService" behaviorConfiguration="Default">
        <endpoint name="TCPEndpoint" address="" binding ="netTcpBinding" contract="Externals.IExecutionService"/>
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:3040/ExecutionService"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Default">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

尝试从我的示例客户端添加服务引用会导致以下错误:

Metadata contains a reference that cannot be resolved: 'net.tcp://localhost:3040/ExecutionService/Externals.IExecutionService'.
There was no endpoint listening at net.tcp://localhost:3040/ExecutionService/Externals.IExecutionService that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
If the service is defined in the current solution, try building the solution and adding the service reference again.

我看到here app.config 中不需要。 我有点困惑,我是WCF 的初学者。 一个不错的WPF 应用程序如何引用我的服务?我希望该服务是 Windows 托管的,我不想和我一起拖动 dll。

编辑 我添加了一个元数据端点,我的 appconfig 现在看起来像这样:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <services>
      <service name="ExecutionService" behaviorConfiguration="Default">
        <endpoint name="TCPEndpoint" 
                  address="" 
                  binding ="netTcpBinding" 
                  contract="Externals.IExecutionService"/>
        <endpoint address="mex" 
                  binding="maxHttpBinding" 
                  contract="Externals.IExecutionService"/>
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:3040/ExecutionService"/>
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Default">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

我尝试使用 net.tcp://localhost:3040/ExecutionServicenet.tcp://localhost:3040/ExecutionService/Externalsnet.tcp://localhost:3040/ExecutionService/Externals/IExecutionService 添加服务引用,但仍然遇到同样的错误。

【问题讨论】:

【参考方案1】:

你需要做的:

    maxHttpBinding -> mexTcpBinding - 你不能在 net.tcp 端点上使用 mexHttpBinding(而且它是 mex 而不是 max) mex 端点的合同必须是 IMetadataExchange - 因为您希望通过此端点获得服务元数据 httpGetEnabled="false" 因为没有 http 端点可以从中获取元数据 当我在一个简单的控制台主机中测试解决方案时,我需要将 标记中的名称更改为 Externals.ExecutionService(但这取决于您如何实例化服务)

那么您的服务参考将在:net.tcp://localhost:3040/ExecutionService/mex 因为基地址为net.tcp://localhost:3040/ExecutionService,mex 端点的相对地址设置为mex

最终的 app.config 如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<services>
  <service name="Externals.ExecutionService" behaviorConfiguration="Default">
    <endpoint name="TCPEndpoint"
              address=""
              binding ="netTcpBinding"
              contract="Externals.IExecutionService"/>
    <endpoint address="mex"
              binding="mexTcpBinding"
              contract="IMetadataExchange"/>
    <host>
      <baseAddresses>
        <add baseAddress="net.tcp://localhost:3040/ExecutionService"/>
      </baseAddresses>
    </host>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="Default">
      <serviceMetadata httpGetEnabled="false" />
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>

为了快速测试配置是否正确,我使用控制台主机应用程序作为服务主机。 程序.cs:

using System;
using System.ServiceModel;

namespace Externals

    class Program
    
        static void Main(string[] args)
        

            var sh=new ServiceHost(typeof(ExecutionService));
            sh.Open();
            Console.WriteLine("Service running press any key to terminate...");
            Console.ReadKey();
            sh.Close();
        
    

运行控制台应用程序并尝试通过net.tcp://localhost:3040/ExecutionService/mex 向您的项目添加服务引用。

【讨论】:

【参考方案2】:

乍一看,你已经忘记了Metadata Endpoint

【讨论】:

嗨,我添加了一个,我仍然遇到同样的异常,请参阅帖子中的编辑。【参考方案3】:

改变这个:

<endpoint address="mex" 
                  binding="maxHttpBinding" 
                  contract="Externals.IExecutionService"/>

收件人:

<endpoint address="mex" 
                  binding="mexTcpBinding" 
                  contract="IMetadataExchange"/>

注意不是 maxHttpBinding 而是 mexTcpBinding,你也有错字。

【讨论】:

以上是关于使用 netTcp 绑定时添加服务引用的主要内容,如果未能解决你的问题,请参考以下文章

每次更新服务引用时,如何防止 VS2010 创建新绑定?

WCF NetTcpBinding 安全性 - 它是如何工作的?

使用dynamic引发的异常:无法对 null 引用执行运行时绑定

工作组上的 WCF

无法对空引用执行运行时绑定,但它不是空引用

如何将 net tcp 绑定合并到 web api 环境中?