0

我在客户端项目中有安装程序类

public override void Install(IDictionary stateSaver)
{
    base.Install(stateSaver);
        using (ServiceReference1.ClientClient client = new ServiceReference1.ClientClient())
        {
            if (!client.Register(Context.Parameters["firstname"], Context.Parameters["lastname"], Context.Parameters["email"], Context.Parameters["password"]))
            {
              throw new InstallException("Email address is already used");
            }
        }
}

结果:在 ServiceModel 客户端配置部分中找不到引用合同“ServiceReference1.IClient”的默认端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此合同匹配的端点元素。

有什么想法可以解决吗?

4

1 回答 1

0

WCF 查找YourInstallerAssemblyName.EXE .config 文件以配置您的安装程序代码正在使用的 WCF 客户端(服务参考)。该文件需要包含serviceModel您在其中创建服务引用的 app/web.config 文件中的元素。

于 2012-04-10T18:11:02.110 回答