Author |
Message |
Topic: Transaction handling |
drajani
Replies: 6 Views: 18804
|
Forum: IBM MQ API Support Posted: Tue Jul 11, 2017 3:32 am Subject: Transaction handling |
My session is already created with true and auto acknowledge.
session = mqConnection.CreateSession(true, AcknowledgeMode.AutoAcknowledge);
After some research found below link that says ... |
Topic: Transaction handling |
drajani
Replies: 6 Views: 18804
|
Forum: IBM MQ API Support Posted: Mon Jul 10, 2017 10:21 pm Subject: Transaction handling |
Thanks zpat. I just kept the sample code flow. All key aspects you mentioned are taken care of.
Still looking for help with what else is missing in xms transaction handling. |
Topic: Transaction handling |
drajani
Replies: 6 Views: 18804
|
Forum: IBM MQ API Support Posted: Mon Jul 10, 2017 1:24 am Subject: Transaction handling |
Thank you. With below code the messages still come back to the queue after closing the app. Can you help with what is wrong here.
private IConnection mqConnection = null;
private I ... |
Topic: Transaction handling |
drajani
Replies: 6 Views: 18804
|
Forum: IBM MQ API Support Posted: Fri Jul 07, 2017 2:42 am Subject: Transaction handling |
Hi, For C#.NET based application using MQ Appliance, I have below flow to be addressed.
- Read a message (Msg1) from an MQ on QueueManager MyQMgr
- Parse the content and do some logic
- Create a ... |
Topic: XMS exclusive MQ get access |
drajani
Replies: 4 Views: 12960
|
Forum: IBM MQ API Support Posted: Mon Mar 20, 2017 1:29 am Subject: XMS exclusive MQ get access |
Thank you. Is there a way to achieve this programmatically ? |
Topic: XMS exclusive MQ get access |
drajani
Replies: 4 Views: 12960
|
Forum: IBM MQ API Support Posted: Wed Mar 15, 2017 8:55 pm Subject: XMS exclusive MQ get access |
Typically we use MQOO_INPUT_EXCLUSIVE to get messages with exclusive access for a queue using WMQ libraries.
Is there an equivalent using XMS libraries?
Regards |
Topic: IBM XMS parallel processing |
drajani
Replies: 4 Views: 13147
|
Forum: IBM MQ API Support Posted: Thu Dec 22, 2016 3:25 am Subject: IBM XMS parallel processing |
OK. Thank you. |
Topic: IBM XMS parallel processing |
drajani
Replies: 4 Views: 13147
|
Forum: IBM MQ API Support Posted: Wed Dec 21, 2016 7:48 pm Subject: IBM XMS parallel processing |
Thanks for your reply. I will check on sharecvn. Agreed separate code is not required for rollback scenarios.
Is #2 a expected behavior ? |
Topic: IBM XMS parallel processing |
drajani
Replies: 4 Views: 13147
|
Forum: IBM MQ API Support Posted: Wed Dec 21, 2016 3:17 am Subject: IBM XMS parallel processing |
I need to process each message only once - order is not important. For a given queue Q1, to achieve better throughput, I am planning to do as below from C# based application (IBM MQ v8, XMS v2.5)
... |