-1

我有一个简单的 WCF 服务,我会尝试为我的控制台应用程序添加一个服务引用,它运行良好并自动生成 web-config 配置。

<system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IService1" />
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:50765/Service1.svc" binding="basicHttpBinding"
                bindingConfiguration="BasicHttpBinding_IService1" contract="MyFirstService.IService1"
                name="BasicHttpBinding_IService1" />
        </client>
    </system.serviceModel>

在同一服务中,我尝试为我的 MVC 项目添加服务引用。服务引用添加成功,但未生成 web-config 配置。我怎么解决这个问题 ?

4

1 回答 1

2

可能是 Visual Studio 中的一些错误/故障。您始终可以svcutil.exe在命令行上手动使用该工具,它将生成所有必要的东西:

svcutil.exe http://example.com/yourservicemetadata
于 2013-05-16T05:46:51.953 回答