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

前端之家收集整理的这篇文章主要介绍了.net – 创建wcf Web服务实例时出现InvalidOperationException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个从类库引用的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应用程序(调用您的类库)使用来自它自己的配置文件的数据,而不是来自库配置文件.

原文链接:https://www.f2er.com/html/225111.html

猜你在找的HTML相关文章