3

我有 WCF 服务。我正在尝试在控制台应用程序中托管服务。

我正在遵循这里的所有指示。

现在一切编译正常,但我在运行时遇到异常。

在服务索引器实施的合同列表中找不到合同名称“IMetadataExchange”。将 ServiceMetadataBehavior 添加到配置文件或直接添加到 ServiceHost 以启用对此协定的支持。

现在在指示中,我被指示添加

<endpoint binding="mexHttpBinding" bindingConfiguration=""
name="http://localhost:8080/myservice/MEX/" contract="IMetadataExchange" />

我的 WCF 服务或主机控制台应用程序中的任何地方都没有 IMetadataExchange。

异常从何而来?我缺少参考吗?

这是我的控制台程序

namespace WcfConsoleHost
{
    class Program
    {
        static void Main(string[] args)
        {
            Type type = typeof(myservice);
            using (ServiceHost host = new ServiceHost(type))
            {

                host.Open();
                Console.WriteLine("The service is available. Press any key...");
                Console.ReadKey();
                host.Close();
            }
        }
    }
}

我的 WCF 服务只有一个带有合同的接口,然后是 myservice 类中的实现。

下面是我的整个 app.config。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="ServiceBehavior">
                    <serviceMetadata />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <service name="myservice">
                <endpoint address="http://localhost:8080/myservice/"
                 binding="basicHttpBinding"
                    bindingConfiguration="" contract="myservice.Ims" />
                <endpoint binding="mexHttpBinding" bindingConfiguration=""
                 address="http://localhost:8080/myservice/MEX/"
                    contract="IMetadataExchange" />
            </service>
        </services>
    </system.serviceModel>
</configuration>
4

1 回答 1

4

mex 端点的地址属性错误......它应该是地址,而不是名称。

于 2009-08-21T01:03:25.617 回答