14

我有一个 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.

我在这里看到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/ExecutionService,但仍然遇到相同的错误。net.tcp://localhost:3040/ExecutionService/Externalsnet.tcp://localhost:3040/ExecutionService/Externals/IExecutionService

4

3 回答 3

30

你需要做:

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

于 2013-03-15T00:27:34.580 回答
2

Change this:

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

To:

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

Notice it's not maxHttpBinding but mexTcpBinding, you had typo as well there.

于 2013-03-18T10:50:22.273 回答
2

乍一看,您忘记了元数据端点

于 2013-03-07T13:39:25.250 回答