如何在Powerbuilder 11.5.1中读取Web.Config?
我的同事创建了一个 Web 服务应用程序,供表示层上的 .Net 应用程序使用。他想从 web.config 中读取连接字符串。先感谢您。
My office mate created a web service application to be consumed by a .Net application on the presentation layer. He wants to read the connection string from the web.config. Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Web 表单有 GetConfigSettings(),但对于Web 服务,我猜您需要这样的东西:
我很确定这在某个时候是有效的代码,但我很久以前就放弃了它对于 GetConfigSettings()。我希望它至少应该让你朝着正确的方向前进。
祝你好运,
特里
Web Forms has GetConfigSettings(), but for web services, I'd guess you'd need something like this:
I'm pretty sure this was working code at one point, but I abandoned it long ago for GetConfigSettings(). It should at least get you going in the right direction, I hope.
Good luck,
Terry
您可以尝试下面的代码:
我希望这也可以帮助您。
戴塞
You could try something like this code below:
I hope this can also help you.
Deise