使用 COM 进行 MSMQ 事务(python)?
我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要 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