Author |
Message
|
mq_crazy |
Posted: Mon Feb 07, 2005 8:21 am Post subject: Simple Message flow |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
I am learning and have a WBIMB 5.0 CSD 4.0 running on windows xp pro and i have two local queue managers. I created a message flow which has MQinput, compute and mqoutput nodes. In the mqinput i have input has local queue where broker running and in the output node i am trying to send it to the local queue of the second queue manager, but its not going through. I created sender channel and transmission and remote queues on the 1st queue manager and receiver channel on the second... am i missing anything??? |
|
Back to top |
|
 |
vennela |
Posted: Mon Feb 07, 2005 8:26 am Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
From the broker QMGR can you put the message manually to the QUEUE on the other QMGR?
Did you define a remote queue or is the transmission queue's name same as the remote QMGR name. |
|
Back to top |
|
 |
mq_crazy |
Posted: Mon Feb 07, 2005 8:34 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Thanks for the reply. I am able to put the message manually. I got remote queue and transmission queue define. Does transmission queue name has to match remote queue manager???? |
|
Back to top |
|
 |
mq_crazy |
Posted: Mon Feb 07, 2005 8:51 am Post subject: |
|
|
 Master
Joined: 30 Jun 2004 Posts: 295
|
Hey thanks for your help. I changed the transmission queue name as remote queue managers name and it works. Can you tell me why we have to keep same name as i didn't see that in MQ?? |
|
Back to top |
|
 |
JT |
Posted: Mon Feb 07, 2005 9:06 am Post subject: |
|
|
Padawan
Joined: 27 Mar 2003 Posts: 1564 Location: Hartford, CT.
|
It's in the WBIMB information center: Connecting Components
Quote: |
Define a transmission queue on each component's queue manager. These queues will collect messages ready for transmission between components. Give the transmission queue the same name as the queue manager to which it transmits messages (that is COMP1 and COMP2 for this example).
For example, on queue manager COMP1:
define qlocal('COMP2') usage(XMITQ) replace
and on queue manager COMP2:
define qlocal('COMP1') usage(XMITQ) replace |
|
|
Back to top |
|
 |
EddieA |
Posted: Mon Feb 07, 2005 10:41 am Post subject: |
|
|
 Jedi
Joined: 28 Jun 2001 Posts: 2453 Location: Los Angeles
|
From the Intercommunication manual:
Quote: |
You specify the name of the transmission queue in a remote queue definition, (see Remote queue definitions). If you do not specify the name, the queue manager looks for a transmission queue with the same name as the remote queue manager.
You can specify the name of a default transmission queue for the queue manager. This is used if you do not specify the name of the transmission queue, and a transmission queue with the same name as the remote queue manager does not exist. |
Cheers, _________________ Eddie Atherton
IBM Certified Solution Developer - WebSphere Message Broker V6.1
IBM Certified Solution Developer - WebSphere Message Broker V7.0 |
|
Back to top |
|
 |
|