Author |
Message |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 4:50 am Subject: Triggering a confirmation message from MQ w/ Java |
Would this do the trick?
MQMessage myMessage = new MQMessage();
myMessage.feedback = MQC.MQFB_COD;
Thanks! |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 4:33 am Subject: Triggering a confirmation message from MQ w/ Java |
I am reading the PDF and it seems to suggest that the MQMD is edited by setting these options on as part of the get message options. Am I wrong here?
As far as upgrading to 6, this is completely ou ... |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 4:17 am Subject: Triggering a confirmation message from MQ w/ Java |
Would the below do the trick?
gmo.options = MQC.MQGMO_MSG_UNDER_CURSOR | MQC.MQMD_VERSION_2 | MQC.MQFB_COD;
myQueue.get(myMessage, gmo);
Thanks! |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 3:43 am Subject: Triggering a confirmation message from MQ w/ Java |
So, would I need to write an exit to manipulate the MQMD or do I set MQMD.MQFB_COD or something similar as a GET message option?
Thanks |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 3:05 am Subject: Triggering a confirmation message from MQ w/ Java |
iS MQMD available to Websphere MQ 5.3?
According to the docs it states:
Availability: All WebSphere MQ V6.0 systems, plus WebSphere MQ clients connected to these systems.
Thanks! |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 1:43 am Subject: Triggering a confirmation message from MQ w/ Java |
No, I did not read it, it was just a thought. I am pretty new to MQ development with Java.
I do have the programming reference so can you give me an indication where I can find this information in ... |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 28, 2007 12:47 am Subject: Triggering a confirmation message from MQ w/ Java |
So that would be open options set on the queue before getting the message? |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Tue Feb 27, 2007 10:54 pm Subject: Triggering a confirmation message from MQ w/ Java |
Hi everyone,
I have searched on Google and I have read the docs on the IBM public library but have not foun d a way to successfully generate this status message.
Has anyone on here implemented t ... |
Topic: Triggering a confirmation message from MQ w/ Java |
volume4
Replies: 27 Views: 19317
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 21, 2007 7:26 am Subject: Triggering a confirmation message from MQ w/ Java |
Hi there everyone,
I am using a Java class to get messages from a queue on MQ 5.3. The client wants me to send an acknowledgment via MQ when the app has successfully got the message from the queue. ... |