Author |
Message |
Topic: set correlId |
voodoo123
Replies: 19 Views: 15551
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Dec 12, 2006 6:40 am Subject: set correlId |
plesase set the reply identifier in properies folder. |
Topic: Creating MQMD header from scratch |
voodoo123
Replies: 14 Views: 22397
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 29, 2006 11:13 pm Subject: Creating MQMD header from scratch |
SET OutputRoot.Properties.ReplyIdentifier = MQMI_NONE;
SET OutputRoot.MQMD.CorrelId = MQMI_NONE;
Try this
This will work |
Topic: CorrelID type error in a JMS Sub Flow |
voodoo123
Replies: 10 Views: 9418
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 17, 2006 1:51 am Subject: ReplyProtocol |
I think I have found out the exact reason for this behaviour.
This is to do with the 'ReplyProtocol' field in the MQMD header.
When the message comes out of a JMSMQTranform node 'ReplyProtocol' is ... |
Topic: CorrelID type error in a JMS Sub Flow |
voodoo123
Replies: 10 Views: 9418
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 14, 2006 7:09 am Subject: CorrelID type error in a JMS Sub Flow |
Example code for tranformation in Compute node I had used.
SET OutputRoot = InputRoot;
SET OutputRoot.MQMD.Expiry = MQEI_UNLIMITED;
SET OutputRoot.MQMD.Persistence = MQPER_PERSISTENT;
SET Ou ... |
Topic: CorrelID type error in a JMS Sub Flow |
voodoo123
Replies: 10 Views: 9418
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 14, 2006 6:47 am Subject: CorrelID type error in a JMS Sub Flow |
Use this statement first
SET OutputRoot = InputRoot;
Then remove all the unwanted elements
and add the rest.
It is working |