gpt4 book ai didi

c# - 在 ServiceModel 客户端配置部分中找不到引用contract.的默认端点元素

转载 作者:行者123 更新时间:2023-12-03 03:06:49 25 4
gpt4 key购买 nike

我添加了一个名为 http://192.168.5.180:8080/intg/CrmWebService.asmx 的服务引用。名称为 CrmWebProxy。

下面是代码行。

Microsoft.Crm.Accelerator.Cca.SampleServices.CrmWebService.CustomerRecord[] resultWebService = new Microsoft.Crm.Accelerator.Cca.SampleServices.CrmWebService.CustomerRecord[3];
Microsoft.Crm.Accelerator.Cca.SampleServices.CrmWebService.CRMWebServiceSoapClient client = new Microsoft.Crm.Accelerator.Cca.SampleServices.CrmWebService.CRMWebServiceSoapClient();
resultWebService = client.GetCustomerData(firstName, lastName, phoneNumber, email, accountName, accountNo, maxRecords);

我收到上述错误。但是如果我在示例应用程序中测试它,它运行得很好。

任何帮助。

最佳答案

您似乎尚未复制 Web 服务的配置条目。没有它,您就无法调用 Web 服务。

当您在项目中添加服务引用时,Web 服务的配置条目将添加到 web.config 文件的 app.config 中。示例配置可能如下所示。您需要将其复制到项目配置文件中。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="GlobalWeatherSoap" closeTimeout="00:01:00" openTimeout="00:01:00"
receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://www.webservicex.com/globalweather.asmx"
binding="basicHttpBinding" bindingConfiguration="GlobalWeatherSoap"
contract="ServiceReference1.GlobalWeatherSoap" name="GlobalWeatherSoap" />
</client>
</system.serviceModel>
</configuration>

注意:这只是一个示例文件。您需要从您的项目中找到类似的内容(在控制台中),并将该条目复制到您正在使用该服务的任何其他项目的 app.config 中。

关于c# - 在 ServiceModel 客户端配置部分中找不到引用contract.的默认端点元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8624224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com