WCF:在客户端上添加服务引用从托管服务中提取错误的信息

发布于 2024-10-11 18:11:14 字数 198 浏览 2 评论 0原文

我们有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自此以后,行同陌路 2024-10-18 18:11:14

您必须将配置复制到托管应用程序。仅应用托管应用程序的配置。 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.

指尖微凉心微凉 2024-10-18 18:11:14

如果我没记错的话,这是因为 ConfigurationManager 不支持 dll 内的配置文件。

If I remember correctly, the reason for this is because ConfigurationManager does not support config files inside dll's.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文