使用 COM 进行 MSMQ 事务(python)?

发布于 2024-10-19 05:47:13 字数 556 浏览 2 评论 0原文

我尝试使用 win32com 库从 Python 使用 MSMQ,类似于此示例。我可以将消息放入队列中,但在本例中它是一个事务队列,因此我需要围绕消息发送创建一个事务。基本上我正在尝试使用 COM 在 python 中执行此 VB 示例

我不知道如何让交易发生:

import win32com.client
transaction=win32com.client.Dispatch("MSMQ.MSMQTransaction")
transaction.Begin()

给出:

AttributeError: MSMQ.MSMQTransaction.Begin

如何开始交易?我走在正确的轨道上吗?

I'm attempting to use MSMQ from Python using the win32com library, similar to this example. I'm able to put messages onto the queue, but in this case it's a transactional queue, so I need to create a transaction around the message send. Basically I'm attempting to do this VB example in python using COM.

I can't figure out how to get the transaction to happen:

import win32com.client
transaction=win32com.client.Dispatch("MSMQ.MSMQTransaction")
transaction.Begin()

gives:

AttributeError: MSMQ.MSMQTransaction.Begin

How do I begin the transaction? Am I on the right track?

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

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

发布评论

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

评论(1

丑丑阿 2024-10-26 05:47:13

您不需要 MSMQtransaction 对象即可将事务消息发送到事务队列。
只需在调用 Send() 时将事务参数设置为 MQ_SINGLE_MESSAGE 即可。

干杯
约翰·布瑞克威尔

You don't need an MSMQtransaction object to send a transactional message to a transactional queue.
Just set the transaction parameter to MQ_SINGLE_MESSAGE when you call Send().

Cheers
John Breakwell

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