我已经在VS2008/中添加了web服务的代理。NET 3.5解决方案。在构造客户端。net时会抛出以下错误:
在ServiceModel客户端配置部分中找不到引用合约“IMySOAPWebService”的默认端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中没有找到与此契约匹配的端点元素。
搜索此错误告诉我在契约中使用完整的名称空间。这是我的app.config完整的命名空间:
<client>
<endpoint address="http://192.168.100.87:7001/soap/IMySOAPWebService"
binding="basicHttpBinding" bindingConfiguration="IMySOAPWebServicebinding"
contract="Fusion.DataExchange.Workflows.IMySOAPWebService" name="IMySOAPWebServicePort" />
</client>
我正在运行XP本地(我提到这是因为一些谷歌点击提到win2k3)
将app.config复制到app.exe。配置,所以这也不是问题。
有线索吗?
还有另一种方法我找到正确的endpointConfigurationName。
如下所示添加endpointConfigurationName
EservicesNew.ServiceClient eservicenew = new EservicesNew.ServiceClient("BasicHttpsBinding_IService");
如下所示找到endpointConfigurationName
添加Web Reference之后,打开配置。Svcinfo文件中生成的参考文件。
找到了两个端点,我使用了正确的端点bindingConfiguration值,即basichttpbinding_iservice
还有另一种方法我找到正确的endpointConfigurationName。
如下所示添加endpointConfigurationName
EservicesNew.ServiceClient eservicenew = new EservicesNew.ServiceClient("BasicHttpsBinding_IService");
如下所示找到endpointConfigurationName
添加Web Reference之后,打开配置。Svcinfo文件中生成的参考文件。
找到了两个端点,我使用了正确的端点bindingConfiguration值,即basichttpbinding_iservice