0

我正在尝试使用 WCF 服务。我添加了一个服务参考,现在我正在尝试调用它:

BusStopServiceBinding.BusStopPortTypeClient client = new BusStopServiceBinding.BusStopPortTypeClient();

但是,我收到此错误:

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

我的app.config文件如下所示:

<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
</configuration>

serviceModel如您所见,没有部分。我应该手动添加它,如果是的话,我应该在里面放什么?

4

3 回答 3

2

本节用于 WCF 配置。在 Visual Studio 的“工具”部分中,您有一个“WCF 服务配置编辑器”,可帮助您创建此部分。如果您没有此部分,则必须在代码中对其进行配置,但这不是最佳做法。在本节中,您必须放置端点、安全设置、绑定、wcf 合同……

于 2012-11-05T11:36:35.300 回答
2

如果您将服务引用添加到库,而不是主项目(exe 或 Web 应用程序等),则必要的添加(通过 Visual Studio 工具)将添加到app.config库项目内部,而不是在你的主要项目。

但是,在运行时,只app.config使用主项目的,因此您需要将app.config库中(无用的)中的相关部分复制到主项目的部分中。

于 2012-11-05T11:47:43.300 回答
0

我遇到了同样的错误,Damien_The_Unbeliever 的回答帮助我理解 && 解决了我的问题:“但是,在运行时,只使用了主项目的 app.config”。
我在一个类库项目中有我的 wsdl 代理。尽管我的 UnitTest 项目能够从该类库的 app.config 中读取,但在运行时该类库的 app.config 变得无关紧要。

我的解决方案是为自动生成的客户端类创建一个部分类,并依赖从代码配置的 System.ServiceModel,而不是从谁知道 app.config 中读取它:

public partial class WsdlClient 
    {
        public WsdlClient (string endpointUrl, TimeSpan timeout, string username, string password) :
            base(WsdlClient.GetBindingForEndpoint(timeout), WsdlClient.GetEndpointAddress(endpointUrl))
        {
            this.ChannelFactory.Credentials.UserName.UserName = username;
            this.ChannelFactory.Credentials.UserName.Password = password;           
        }

        private static System.ServiceModel.Channels.Binding GetBindingForEndpoint(TimeSpan timeout)
        {
            var httpsBinding = new BasicHttpsBinding();
            httpsBinding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Basic;
            httpsBinding.Security.Mode = BasicHttpsSecurityMode.Transport;

            var integerMaxValue = int.MaxValue;
            httpsBinding.MaxBufferSize = integerMaxValue;
            httpsBinding.MaxReceivedMessageSize = integerMaxValue;
            httpsBinding.ReaderQuotas = System.Xml.XmlDictionaryReaderQuotas.Max;
            httpsBinding.AllowCookies = true;

            httpsBinding.ReceiveTimeout = timeout;
            httpsBinding.SendTimeout = timeout;
            httpsBinding.OpenTimeout = timeout;
            httpsBinding.CloseTimeout = timeout;

            return httpsBinding;
        }

        private static System.ServiceModel.EndpointAddress GetEndpointAddress(string endpointUrl)
        {
            if (!endpointUrl.StartsWith("https://"))
            {
                throw new UriFormatException("The endpoint URL must start with https://.");
            }
            return new System.ServiceModel.EndpointAddress(endpointUrl);
        }
    }

WsdlClient MyWsdlClient =>
            new WsdlClient (ConfigurationManager.AppSettings["endpointUrl"]
                , new TimeSpan(0, 0, 1, 0),
                "blabla",
                "blabla");
于 2020-02-28T13:20:50.170 回答