WCF:在客户端上添加服务引用从托管服务中提取错误的信息
我们有一个 Windows 服务项目托管两个 WCF 服务,但我们无法弄清楚为什么 WCF 服务上的 app.config 设置无法正确拉取到我们的客户端程序。
事实证明,windows服务项目的app.config优先。当我们将所需的设置移动到窗口服务的 app.config 中时,一切又恢复正常了。
希望这可以帮助某人避免长达 4 小时的头痛!
We had a Windows Service Project hosting two of our WCF services and we could not figure out why the app.config settings on the WCF services were not pulling correctly to our client programs.
It turns out that the app.config for the windows service project takes precedent. When we moved the settings we wanted into the window service's app.config everything worked again.
Hope this saves someone a 4 hour long headache!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将配置复制到托管应用程序。仅应用托管应用程序的配置。 WCF 服务中的配置仅用于测试目的,如 WCFTestClient。
You must copy configuration to hosting application. Only configuration from hosting application is applied. Configuration in WCF services is only for testing purpose like WCFTestClient.
如果我没记错的话,这是因为 ConfigurationManager 不支持 dll 内的配置文件。
If I remember correctly, the reason for this is because ConfigurationManager does not support config files inside dll's.