如何使动态 Web 引用的 URI 在 web.config 而不是 app.config 中查找?
我有一个类库(DLL),它有一个动态的网络引用。
我已将该设置复制到 web.config 的 applicationSettings 中,但它仍然引用我在开发过程中设置的旧 URI。
知道如何让它从 web.config 获取 Web 服务的 URI 吗?
I have a class library(DLL) which has a web reference, its dynamic.
I have copied the setting into the applicationSettings of the web.config but still it keeps referring to the old URI I had set during develoment.
any idea how i can make it take the URI of the web-service from the web.config?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 Web 应用程序中运行,则无法从 app.config 获取值。您可能看到的是默认值,而不是 app.config 中的配置值。
要查看这一点,请更改 app.config 中的值并查看服务是否选择它。
There is no way that it's taking the value from app.config if you're running in a web application. You are probably seeing the default value, not the configured value in app.config.
To see this, change the value in app.config and see if the service picks it up.