.net – 创建wcf Web服务实例时出现InvalidOperationException

.net – 创建wcf Web服务实例时出现InvalidOperationException,第1张

概述我有一个从类库引用的WCF Web服务.在项目运行之后,当从类库中创建服务客户端对象时,我收到带有消息的InvalidOperationException: Could not find default endpoint element that references contract ‘MyServiceReference.IMyService’ in the ServiceModel clie 我有一个从类库引用的WCF Web服务.在项目运行之后,当从类库中创建服务客户端对象时,我收到带有消息的InvalIDOperationException:

Could not find default endpoint element that references contract
‘MyServiceReference.IMyService’ in the ServiceModel clIEnt
configuration section. This might be because no configuration file was
found for your application,or because no endpoint element matching
this contract Could be found in the clIEnt element.

我用来创建实例的代码是:

myServiceClIEnt = new MyServiceClIEnt();

MyServiceClIEnt继承自的地方

System.ServiceModel.ClIEntBase

我该如何解决这个问题?

注意:我有一个单独的控制台应用程序,它只是创建相同的服务对象并调用它,它没有任何问题.

解决方法

Here is my app.config file of the class library:

您应该将此配置设置放到主应用程序的配置文件中. .NET应用程序(调用您的类库)使用来自它自己的配置文件的数据,而不是来自库配置文件.

总结

以上是内存溢出为你收集整理的.net – 创建wcf Web服务实例时出现InvalidOperationException全部内容,希望文章能够帮你解决.net – 创建wcf Web服务实例时出现InvalidOperationException所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1141122.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存