使用 Web 服务将遗留应用程序连接到数据库

发布于 2024-10-12 06:11:06 字数 257 浏览 2 评论 0原文

我想开发一个系统,其中所有网络通信都通过网络服务进行。我的问题是我使用了一些遗留应用程序。
这些应用程序需要连接到数据库。我的问题是我不想让他们使用与数据库的本机二进制连接。
我正在寻找解决方案。

类似于虚拟数据库,它是一个代理进程,它接受连接,然后将这些连接传输到 Web 服务并连接到数据库。
我不想更改任何代码,最好的情况只是连接字符串。

目前我正在使用 Linux 并考虑使用 PostgreSQL 数据库,但任何解决方案都将受到赞赏。

I want to develop a system in which all network communications are via web services. My problem is I used some legacy applications.
These applications need to connect to a database. My problem is I don't want to let them to use native, binary connection to database.
I was looking for a solution.

Something like a virtual database that is a proxy process which accept connections, then transfer these connections to Web Service and connect to database.
I want to not change any code, in the best case just connection string.

Currently I'm using Linux and thinking about using PostgreSQL Database but any solution will be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

紫﹏色ふ单纯 2024-10-19 06:11:06

假设所有遗留应用程序都可以配置为使用不同的数据库连接(连接字符串、主机名等),那么您需要一个代理数据库服务器。

仅当遗留应用程序和数据库之间的协议有详细记录时,这才有效。

此外,该服务将 100% 特定于所使用的数据库。所有 Web 服务操作都需要与数据库协议上的数据库操作处于同一级别。这不会是很高水平。

这是太多的努力,将完全由你支持,并且不值得。

Assuming that all the legacy applications can either be configured to use a different database connection (connection string, host name, whatever), then you need a proxy database server.

This will only work if the protocol between the legacy applications and the database is well-documented.

Also, this service will be 100% specific to the database being used. All of your web service operations will need to be at the same level as the database operations on the database protocol. This will not be very high-level.

This is far too much effort, will be supported entirely by you, and will not be worth it.

遇到 2024-10-19 06:11:06

You are describing one of the use cases that went into the design of Service-oriented architecture (SOA). In a SOA environment all these components are loosely coupled via service providers. You can have legacy applications, business rule engines, and back end databases all communicating via defined services.

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