如何在Powerbuilder 11.5.1中读取Web.Config?

发布于 2024-08-28 18:57:02 字数 76 浏览 3 评论 0原文

我的同事创建了一个 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 技术交流群。

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

发布评论

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

评论(2

や莫失莫忘 2024-09-04 18:57:02

Web 表单有 GetConfigSettings(),但对于Web 服务,我猜您需要这样的东西:

#IF Defined PBDOTNET THEN
System.Collections.Specialized.NameValueCollection cs

cs = System.Configuration.ConfigurationManager.AppSettings
SQLCA.DBMS = cs["ConnectionDBMS"]
SQLCA.DBParm = cs["ConnectionDBParm"]
SQLCA.AutoCommit = (Lower (cs["ConnectionAutoCommit"]) = "true")
SQLCA.LogID = cs["ConnectionLogID"]
SQLCA.LogPass = cs["ConnectionLogPass"]
SQLCA.ServerName = cs["ConnectionServerName"]
#END IF

我很确定这在某个时候是有效的代码,但我很久以前就放弃了它对于 GetConfigSettings()。我希望它至少应该让你朝着正确的方向前进。

祝你好运,

特里

Web Forms has GetConfigSettings(), but for web services, I'd guess you'd need something like this:

#IF Defined PBDOTNET THEN
System.Collections.Specialized.NameValueCollection cs

cs = System.Configuration.ConfigurationManager.AppSettings
SQLCA.DBMS = cs["ConnectionDBMS"]
SQLCA.DBParm = cs["ConnectionDBParm"]
SQLCA.AutoCommit = (Lower (cs["ConnectionAutoCommit"]) = "true")
SQLCA.LogID = cs["ConnectionLogID"]
SQLCA.LogPass = cs["ConnectionLogPass"]
SQLCA.ServerName = cs["ConnectionServerName"]
#END IF

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

画▽骨i 2024-09-04 18:57:02

您可以尝试下面的代码:

String ls_key, ls_value
#IF DEFINED PBWEBSERVICE THEN
    ls_key = 'database'   
    ls_value = GetConfigSettings(ls_key)   
#END IF

我希望这也可以帮助您。

戴塞

You could try something like this code below:

String ls_key, ls_value
#IF DEFINED PBWEBSERVICE THEN
    ls_key = 'database'   
    ls_value = GetConfigSettings(ls_key)   
#END IF

I hope this can also help you.

Deise

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