configSource 绝对路径解决方法
我有一个 WCF 数据服务,其中包含一些在 page_load 事件期间异步调用的方法。
如果需要,我需要一个解决方案来从脚本或控制台应用程序调用这些方法。
我创建了一个引用 WCF .dll 库的控制台应用程序。我必须将 WCF 服务下的 web.config 中的一些配置变量复制到控制台应用程序下的 app.config 中。
我希望 app.config 自动镜像 web.config 或以某种方式将控制台应用程序指向 WCF 服务 web.config。
我的控制台应用程序和 wcf 项目在同一解决方案中彼此相邻,因此“configSource”属性不起作用。不允许有父目录或绝对路径。
有谁知道这个问题的解决方法?
I have a WCF data service with some methods I call asynchronously during page_load events.
I need a solution to call these methods from either a script or console app if necessary.
I created a console app that references the WCF .dll libraries. I have to duplicate some of the configuration variables that are in web.config under the WCF service into an app.config under the console app.
I want the app.config to mirror the web.config automatically or somehow point the console app at the WCF services web.config.
My console app and wcf projects are adjacent to eachother in the same solution, so the 'configSource' attribute wont work. No parent directories or absolute paths are allowed.
Does anyone know of a work-around for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我不知道您的自定义配置部分是什么,但此类将向您展示如何以编程方式检索配置部分(本例中为 system.serviceModel/client)、应用程序设置和连接字符串。您应该能够修改它以满足您的需要。
用法:
Ok, I don't know what your custom config section is, but this class will show you how to retrieve config sections (system.serviceModel/client in this example), app settings and connection strings programmatically. You should be able to modify it to fit your needs.
Usage: