1

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

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

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

给出:

AttributeError: MSMQ.MSMQTransaction.Begin

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

4

1 回答 1

4

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

于 2011-02-24T19:50:59.893 回答