Author |
Message
|
OzgurAydin |
Posted: Mon Sep 08, 2008 3:34 am Post subject: MQ Message move ! |
|
|
 Apprentice
Joined: 08 Sep 2008 Posts: 27
|
Hi,
I want to move a message from one machine to another ? Is there a tool to do this ?
Thank you. |
|
Back to top |
|
 |
David.Partridge |
Posted: Mon Sep 08, 2008 3:40 am Post subject: |
|
|
 Master
Joined: 28 Jun 2001 Posts: 249
|
Have you looked at the MQ support packs? Like e.g. MA01? _________________ Cheers,
David C. Partridge |
|
Back to top |
|
 |
OzgurAydin |
Posted: Mon Sep 08, 2008 3:50 am Post subject: |
|
|
 Apprentice
Joined: 08 Sep 2008 Posts: 27
|
Yes I have looked up tools like MQ batch toolkit and wmqmsgtool. But couldn't get them running... I am looking just for one simple application that will allow me to put a message from Queue Manager A on 10.0.0.1 into Queue Manager B on 10.0.0.2
That' s it. |
|
Back to top |
|
 |
Mr Butcher |
Posted: Mon Sep 08, 2008 4:01 am Post subject: |
|
|
 Padawan
Joined: 23 May 2005 Posts: 1716
|
these are simple applications. MO71 may be another one you could try to use.
what is your problem in getting them running? _________________ Regards, Butcher |
|
Back to top |
|
 |
OzgurAydin |
Posted: Mon Sep 08, 2008 4:12 am Post subject: |
|
|
 Apprentice
Joined: 08 Sep 2008 Posts: 27
|
Java related problems. I cannot find the ibm.com.... classes and so on.
Let me try the other support pack.
Thanks. |
|
Back to top |
|
 |
PeterPotkay |
Posted: Mon Sep 08, 2008 4:22 am Post subject: |
|
|
 Poobah
Joined: 15 May 2001 Posts: 7722
|
OzgurAydin wrote: |
I cannot find the ibm.com.... classes |
Did you install MQ on your machine? Any and every support pack that deals with moving messages is going to require MQ to be installed on the machine executing these calls for you. MQ Client should be all that's required. _________________ Peter Potkay
Keep Calm and MQ On |
|
Back to top |
|
 |
RogerLacroix |
Posted: Mon Sep 08, 2008 11:06 am Post subject: |
|
|
 Jedi Knight
Joined: 15 May 2001 Posts: 3264 Location: London, ON Canada
|
OzgurAydin wrote: |
I have looked up tools like MQ batch toolkit and ... |
Personally, I would use MQ Visual Edit, but MQ Batch Toolkit can easily do it:
From section "Backing up a Queue" in Chapter 4, to save all messages (MQMD & data) in queue "TEST01.Q" of MQA1 to a VEQ file.
Code: |
mqbt Backup -p MQA1 -q TEST01.Q -f mybackup.veq |
From section "Restoring a Queue" in Chapter 4, to load messages (MQMD & data) in a file to a queue called "TEST22.Q" of MQA2.
Code: |
mqbt Restore -p MQA2 -q TEST22.Q -f mybackup.veq |
Regards,
Roger Lacroix
Capitalware Inc. _________________ Capitalware: Transforming tomorrow into today.
Connected to MQ!
Twitter |
|
Back to top |
|
 |
|