The information in this article applies to:
SUMMARYMicrosoft Message Queue Server (MSMQ) send and receive operations can be included in Microsoft Transaction Server (MTS) transactions. Since an MTS component can be marked for transactions in several ways, you may need to manage two types of queues and write conditional code to avoid queue and component type mismatch (MQ_ERROR_TRANSACTION_USAGE error). It is possible to use a single transactional queue in all the cases. MTS provides the context object, IsInTransaction() method, to determine whether or not the component is transactional. MSMQ provides specific flags in send and receive APIs and ActiveX calls to deal with specific cases. MORE INFORMATIONThe following table shows the results of using MQ_MTS_TRANSACTION constant in the pTransaction parameter of send/receive APIs and ActiveX methods for different combinations of components and queue types.
How to Use a Single Transactional Queue with MQSendMessage/SendIf the component is non-transactional, use the MQ_SINGLE_MESSAGE constant in the pTransaction parameter of MQSendMessage/Send call to send to a transactional queue. This makes the message transactional. This is an independent transaction not related to the MTS transaction and will not rollback the send operation if the MTS component is marked transactional and you call SetAbort to end the MTS transaction.How to Use a Single Transactional Queue with MQReceiveMessage/ReceiveUse MQ_NO_TRANSACTION constant in the pTransaction parameter of MQReceiveMessage/Receive call. This makes it possible to receive non- transactional from the transactional queue even if the queue is not local.You will need to use the MTS context object, IsInTransaction() method, to determine whether or not the component is transactional and then pass the appropriate flag to the MSMQ send/receive call. For code example using MSMQ C API and ActiveX see the articles in the "References" section. REFERENCESFor additional information, please see the following articles in the Microsoft Knowledge Base: Q175725 HOWTO: Using MSMQ C API Inside an MTS Component Q175726 HOWTO: Using MSMQ Within an MTS Component in Visual Basic Q176816 HOWTO: Using MSMQ within an MTS Component in Java Additional query words: viper falcon
Keywords : kbMSMQ kbMSMQ100 kbMTS kbMTS100 kbDSupport MQProg |
Last Reviewed: October 7, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |