.Net 数据库消息代理
我正在寻找一种简单可靠的机制来从数据库级别执行应用程序消息代理。 我基本上需要在两个不同的应用程序中进行更改,以便彼此生成消息,以指示它们的公共对象之间发生了更改。 困难在于两个系统都有自己独特的数据库模式来定义这些公共对象。
是否值得采用 BizTalk 解决方案来创建消息代理服务,或者是否有更简单的方法可以使用标准 .Net 方法或商业组件来实现相同的目标?
谢谢,
布莱恩。
I'm looking for a simple and reliable mechanism to perform application message brokering from the database level. I basically need changes in two distinct applications to generate messages to each other to indicate that changes have occurred between their common objects. The difficulty lies in the fact that both systems have their own unique database schemas to define these common objects.
Is it worthwhile pursuing a BizTalk solution to create a message brokering service or are there simpler ways to achieve the same thing using standard .Net approaches or commercial components?
Thanks,
Brian.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据库是什么? 如果是 SQL Server,您是否考虑过 Service Broker? 这在(根据要求)数据库级别提供了强大的消息传递...
消息不依赖于数据库模式,因此这应该不是问题。
What is the database? If SQL Server, have you considered Service Broker? This provides robust messaging at (as requested) the database level...
The messages are not tied to the database schema, so that shouldn't be a problem.