Author |
Message |
Topic: Set CorrelId into message MQMD |
syangloo
Replies: 11 Views: 21256
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue May 31, 2005 4:45 pm Subject: Set CorrelId into message MQMD |
Thanks EddieA
It work now.
Thanks for your help, enjoy you days.
Take care  |
Topic: Set CorrelId into message MQMD |
syangloo
Replies: 11 Views: 21256
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 27, 2005 6:51 pm Subject: Set CorrelId into message MQMD |
Hi All,
What is the error message mean?
My Transaction_id table content two field (DB2)
TXNID - BLOB - 80 bytes
RQUID - VARCHAR - 60 bytes
Compute Node i insert the request message msgid in ... |
Topic: Set CorrelId into message MQMD |
syangloo
Replies: 11 Views: 21256
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 23, 2005 4:52 pm Subject: Set CorrelId into message MQMD |
Dear All
Below is my new ESQL for it.
SET OutputRoot = InputRoot;
-- Enter SQL below this line. SQL above this line might be regenerated, causing any modifications to be lost.
DECLARE Cor ... |
Topic: Set CorrelId into message MQMD |
syangloo
Replies: 11 Views: 21256
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 23, 2005 3:28 pm Subject: Set CorrelId into message MQMD |
Thanks for you reply....
Below is the code i try to set the data from table into environment. Not sure the ESQL is correct or not....
Bcos i still getting nothing.
SET OutputRoot = Inp ... |
Topic: Set CorrelId into message MQMD |
syangloo
Replies: 11 Views: 21256
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon May 23, 2005 1:14 pm Subject: Set CorrelId into message MQMD |
Dear all
Is me again, this time i try to select the value from a table and set it to the message MQMD.correlid field. Deploy successfully and already added the DB and table name into the comput ... |
Topic: ESQL INSERT data into table (DB2) |
syangloo
Replies: 5 Views: 15628
|
Forum: WebSphere Message Broker (ACE) Support Posted: Sat May 21, 2005 9:44 am Subject: ESQL INSERT data into table (DB2) |
Below is the error log from the Win2k Event viewer
( QMBKKL001.RQRP ) Database error: ODBC return code '-1'.
The message broker encountered an error whilst executing a database operation. ... |
Topic: ESQL INSERT data into table (DB2) |
syangloo
Replies: 5 Views: 15628
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri May 20, 2005 7:13 pm Subject: ESQL INSERT data into table (DB2) |
Below is the Error message i get it from the MQI version 2.1 messages reference.
BIP 2322E Database error: SQL State &1'; Native Error Code '&2'; Error Text '&3'.
Explanation: The e ... |
Topic: ESQL INSERT data into table (DB2) |
syangloo
Replies: 5 Views: 15628
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 19, 2005 3:08 am Subject: ESQL INSERT data into table (DB2) |
Dear All,
I try to insert two data into one simple table as per below
Table name = TRANSACTION_ID
Field = TXNID, RQUID
Below is my ESQL to insert those data into DB
SET OutputRoot = InputRo ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Thu May 19, 2005 12:33 am Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
As my testing.... i display out the messageid i get from the request message is like AMQ Qm.IVR.KL.00|!6aB^a
In MQ Explorer message properties indentifier we can get two MsgId n two CorrId and now ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Mon May 16, 2005 12:03 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Any thing to do with the AMI setting???
Any one can help?
Take care |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Thu May 12, 2005 11:44 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Dear All
Below is my program code....
static char * sccsid = (char*) "@(#) samples/mbi/Server.cpp, MBI, A120, A120-L010627.1 1.17.3.1 01/06/26 16:14:50";
// ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Tue May 10, 2005 7:41 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Yes.... Been check the CorrID in the host queue at the request msg level. Broker already successful copy the request msg msgid into corrid column.
That mean
Request msg MsgId = 123456 after client ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Mon May 09, 2005 9:33 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Because we find out every time when the message put into a different queue, the msgid will be change. So that we need to copy the msgid into the corrid when the msg at message flow (broker) before it ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Sun May 08, 2005 4:59 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Dear fjb_saper
Thanks for you reply...
AmBytes myMessageId = myReceiveMsg.getMessageId();
mySendMsg.setCorrelationId(myMessageId);
You code is copy the request (recei ... |
Topic: Urgent! Set Correlation ID in response msg with AMI C++ |
syangloo
Replies: 11 Views: 20511
|
Forum: IBM MQ API Support Posted: Sat May 07, 2005 8:56 pm Subject: Urgent! Set Correlation ID in response msg with AMI C++ |
Dear all
Currently i tryng the Server program which can read the request msg from queue and reply back with AMI programming in C++.
Now my broker is copy the request msg MsgID into CorrID column ... |