Re: Message distribution

2003-02-08 Thread Michael Dale



Alan -
If you have MQSI 2.1 in the shop, there is a
propagate node that will do what you want. If it is Z/OS and messages are small
consider queue sharing groups. Otherwise, you will need to trigger hard coded
queue and propagate the message to other recipients.
 
 
Michael.

  - Original Message - 
  From:
  Thomas Dunlap 
  To: [EMAIL PROTECTED] 
  Sent: Friday, February 07, 2003 11:44
  AM
  Subject: Re: Message distribution
  Alan,One thing you could do is to change the queue to
  an QALIAS over a QLOCAL and trigger a program you write.  Then this
  program could take in a single message and put out three messages.  This
  way the original application remains unchanged and you have the ability to
  intercede. Since the messages would be short lived, the queue should remain in
  memory and not have a real concern for performance.  Alex
  Korenfeld wrote:
  Hello all

I am looking for solution of sending messages to several destinations.
Our application knows how to put message only to one queue. In this point
it's too late to change the code and use distribution list.
I was wondering if there is any way configuration wise which allows to forward the
same message to 3 different queues simultaneously.

Thanks in advance.

Alex.
-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-
  --
Regards,
Thomas DunlapChief Technology Officer[EMAIL PROTECTED]
Themis,  Inc.http://www.themisinc.com1 (800) 756-3000



Re: Message distribution

2003-02-07 Thread Alex Korenfeld
Stefan

Thanks , I'll give it a try.

Alex.

 -Original Message-
From:   Stefan Sievert [mailto:[EMAIL PROTECTED]]
Sent:   Friday, February 07, 2003 2:15 PM
To: [EMAIL PROTECTED]
Subject:    Re: Message distribution

Hi Alex,
click to http://www.capitalware.biz/unix_general.html and search for MMX,
which is doing what you want (freeware, source included).

If your application is currently MQPUTing to a remote queue (definition) you
would still need to re-define the queue to a local queue, as somebody else
has suggested.
Hope this helps,
Stefan

>From: Alex Korenfeld <[EMAIL PROTECTED]>
>Reply-To: MQSeries List <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Message distribution
>Date: Fri, 7 Feb 2003 10:21:19 -0600
>
>Hello all
>
>I am looking for solution of sending messages to several destinations.
>Our application knows how to put message only to one queue. In this point
>it's too late to change the code and use distribution list.
>I was wondering if there is any way configuration wise which allows to
>forward the
>same message to 3 different queues simultaneously.
>
>Thanks in advance.
>
>Alex.
>-
>
>The information contained in this message is proprietary of Amdocs,
>
>protected from disclosure, and may be privileged.
>
>The information is intended to be conveyed only to the designated
>recipient(s)
>
>of the message. If the reader of this message is not the intended
>recipient,
>
>you are hereby notified that any dissemination, use, distribution or
>copying of
>
>this communication is strictly prohibited and may be unlawful.
>
>If you have received this communication in error, please notify us
>immediately
>
>by replying to the message and deleting it from your computer.
>
>Thank you.
>
>-


_
Tired of spam? Get advanced junk mail protection with MSN 8.
http://join.msn.com/?page=features/junkmail

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive
-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-



Re: Message distribution

2003-02-07 Thread Stefan Sievert
Hi Alex,
click to http://www.capitalware.biz/unix_general.html and search for MMX,
which is doing what you want (freeware, source included).

If your application is currently MQPUTing to a remote queue (definition) you
would still need to re-define the queue to a local queue, as somebody else
has suggested.
Hope this helps,
Stefan


From: Alex Korenfeld <[EMAIL PROTECTED]>
Reply-To: MQSeries List <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Message distribution
Date: Fri, 7 Feb 2003 10:21:19 -0600

Hello all

I am looking for solution of sending messages to several destinations.
Our application knows how to put message only to one queue. In this point
it's too late to change the code and use distribution list.
I was wondering if there is any way configuration wise which allows to
forward the
same message to 3 different queues simultaneously.

Thanks in advance.

Alex.
-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated
recipient(s)

of the message. If the reader of this message is not the intended
recipient,

you are hereby notified that any dissemination, use, distribution or
copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us
immediately

by replying to the message and deleting it from your computer.

Thank you.

-



_
Tired of spam? Get advanced junk mail protection with MSN 8.
http://join.msn.com/?page=features/junkmail

Instructions for managing your mailing list subscription are provided in
the Listserv General Users Guide available at http://www.lsoft.com
Archive: http://vm.akh-wien.ac.at/MQSeries.archive



Re: Message distribution

2003-02-07 Thread Ron Bower
For what it is worth, there is a mirrorq.zip program
out at http://www.developer.ibm.com/tech/sampmq.html
that actually is written to handle being triggered and
copying the message.

Ron

--- Alex Korenfeld <[EMAIL PROTECTED]> wrote:
> Thomas
>
> This answered my question.
>
> Thank a lot for your help.
>
> Alex.
>
> -Original Message-
> From: Thomas Dunlap
> [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 07, 2003 11:33 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Message distribution
>
> Alan,
>
> Currently the application is using Q1, lets say.  If
> you change Q1 to a QALIAS and direct it at a QLOCAL
> (say Q2) you should not have to change the existing
> application.
>
> You have Q2 trigger an application which you write,
> read messages from Q2 and write to the three output
> queues.   This way the only impact is to you,
> changing or defining
> queue definitions and writing a new program to
> output to the three queues.
>
> Alex Korenfeld wrote:
>
>
> Thomas
> The problem is that the queue name is hard coded.
> The application knows to communicate only with one
> queue.
> Then if I understood you right, we'll need to write
> some program, which is triggered and puts messages
> into 3 different
> Queue ?
> Thanks
> Alex.
> -Original Message-
> From: Thomas Dunlap [
> mailto:[EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]> ]
> Sent: Friday, February 07, 2003 10:44 AM
> To: [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
> Subject: Re: Message distribution
> Alan,
>
> One thing you could do is to change the queue to an
> QALIAS over a QLOCAL and trigger a program you
> write.  Then
> this program could take in a single message and put
> out three messages.  This way the original
> application remains unchanged
> and you have the ability to intercede. Since the
> messages would be short lived, the queue should
> remain in memory and not have
> a real concern for performance.
>
> Alex Korenfeld wrote:
>
>
> Hello all
> I am looking for solution of sending messages to
> several destinations.
> Our application knows how to put message only to one
> queue. In this point
> it's too late to change the code and use
> distribution list.
> I was wondering if there is any way configuration
> wise which allows to forward the
> same message to 3 different queues simultaneously.
> Thanks in advance.
> Alex.
>
>
>
>
>
>
>
>   _
>
>
>
>
>
>
-
> The information contained in this message is
> proprietary of Amdocs,
> protected from disclosure, and may be privileged.
> The information is intended to be conveyed only to
> the designated recipient(s)
> of the message. If the reader of this message is not
> the intended recipient,
> you are hereby notified that any dissemination, use,
> distribution or copying of
> this communication is strictly prohibited and may be
> unlawful.
> If you have received this communication in error,
> please notify us immediately
> by replying to the message and deleting it from your
> computer.
> Thank you.
>
-
>
>
>
>
> --
> Regards,
> Thomas DunlapChief Technology Officer
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> Themis,  Inc. http://www.themisinc.com
> <http://www.themisinc.com> 1 (800) 756-3000
>
>
>
>
>
>
>   _
>
>
>
>
>
-
>
> The information contained in this message is
> proprietary of Amdocs,
>
> protected from disclosure, and may be privileged.
>
> The information is intended to be conveyed only to
> the designated recipient(s)
>
> of the message. If the reader of this message is not
> the intended recipient,
>
> you are hereby notified that any dissemination, use,
> distribution or copying of
>
> this communication is strictly prohibited and may be
> unlawful.
>
> If you have received this communication in error,
> please notify us immediately
>
> by replying to the message and deleting it from your
> computer.
>
> Thank you.
>
>
-
>
>
>
>
> --
> Regards,
> Thomas DunlapChief Technology Officer
> [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
> Themis,  Inc. http://www.themisinc.com
> <http://www.themisinc.com> 1 (800) 756-3000
>
> >
-

Re: Message distribution

2003-02-07 Thread Alex Korenfeld









Thomas 

 

This answered my question. 

 

Thank a lot for your help.

 

Alex. 

 

-Original
Message-
From: Thomas Dunlap
[mailto:[EMAIL PROTECTED]]
Sent: Friday, February 07, 2003
11:33 AM
To: [EMAIL PROTECTED]
Subject: Re: Message distribution

 

Alan,

Currently the application is using Q1, lets say.  If you change Q1 to a
QALIAS and direct it at a QLOCAL (say Q2) you should not have to change the
existing application. 

You have Q2 trigger an application which you write, read messages from Q2 and
write to the three output queues.   This way the only impact is to you,
changing or defining 
queue definitions and writing a new program to output to the three queues.

Alex Korenfeld wrote:



Thomas

The
problem is that the queue name is hard coded. The application knows to
communicate only with one queue.

Then
if I understood you right, we’ll need to write some program, which is triggered
and puts messages into 3 different 

Queue
? 

Thanks

Alex.
 

-Original
Message-
From: Thomas Dunlap [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 07, 2003
10:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Message distribution

Alan,

One thing you could do is to change the queue to an QALIAS over a QLOCAL and
trigger a program you write.  Then 
this program could take in a single message and put out three messages.
 This way the original application remains unchanged 
and you have the ability to intercede. Since the messages would be short lived,
the queue should remain in memory and not have 
a real concern for performance.  

Alex Korenfeld wrote:



Hello allI am looking for solution of sending messages to several destinations.Our application knows how to put message only to one queue. In this pointit's too late to change the code and use distribution list.I was wondering if there is any way configuration wise which allows to forward thesame message to 3 different queues simultaneously.Thanks in advance.Alex.  



  -The information contained in this message is proprietary of Amdocs,protected from disclosure, and may be privileged.The information is intended to be conveyed only to the designated recipient(s)of the message. If the reader of this message is not the intended recipient,you are hereby notified that any dissemination, use, distribution or copying ofthis communication is strictly prohibited and may be unlawful.If you have received this communication in error, please notify us immediatelyby replying to the message and deleting it from your computer.Thank you.-  





--Regards,Thomas Dunlap    Chief Technology Officer    [EMAIL PROTECTED]Themis,  Inc.    http://www.themisinc.com    1 (800) 756-3000 



 - The information contained in this message is proprietary of Amdocs, protected from disclosure, and may be privileged. The information is intended to be conveyed only to the designated recipient(s) of the message. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, use, distribution or copying of this communication is strictly prohibited and may be unlawful. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. -  





--Regards,Thomas Dunlap    Chief Technology Officer    [EMAIL PROTECTED]Themis,  Inc.    http://www.themisinc.com    1 (800) 756-3000

 






-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-



Re: Message distribution

2003-02-07 Thread Thomas Dunlap




Alan,

Currently the application is using Q1, lets say.  If you change Q1 to a QALIAS
and direct it at a QLOCAL (say Q2) you should not have to change the existing
application. 

You have Q2 trigger an application which you write, read messages from Q2
and write to the three output queues.   This way the only impact is to you,
changing or defining 
queue definitions and writing a new program to output to the three queues.

Alex Korenfeld wrote:

  

  

  

  

  

  
 
  
  
  Thomas

   

  The problem is that the queue
name is hard coded. The application knows to communicate only with one queue.

  Then if I understood you right,
we’ll need to write some program, which is triggered and puts messages into
3 different 

  Queue ? 

   

  Thanks

  Alex.  

   

  -Original
Message-
 From: Thomas Dunlap [mailto:[EMAIL PROTECTED]]
 Sent: Friday, February 07,
2003 10:44 AM
 To: [EMAIL PROTECTED]
 Subject: Re: Message distribution

   

  Alan,
 
 One thing you could do is to change the queue to an QALIAS over a QLOCAL
and trigger a program you write.  Then 
 this program could take in a single message and put out three messages.  This
way the original application remains unchanged 
 and you have the ability to intercede. Since the messages would be short
lived, the queue should remain in memory and not have 
 a real concern for performance.  
 
 Alex Korenfeld wrote:
 
 

  Hello all
   
  I am looking for solution of sending messages to several destinations.
  Our application knows how to put message only to one queue. In this point
  it's too late to change the code and use distribution list.
  I was wondering if there is any way configuration wise which allows to forward the
  same message to 3 different queues simultaneously.
   
  Thanks in advance.
   
  Alex.
   
  




   
  -
   
  The information contained in this message is proprietary of Amdocs,
   
  protected from disclosure, and may be privileged.
   
  The information is intended to be conveyed only to the designated recipient(s)
   
  of the message. If the reader of this message is not the intended recipient,
   
  you are hereby notified that any dissemination, use, distribution or copying of
   
  this communication is strictly prohibited and may be unlawful.
   
  If you have received this communication in error, please notify us immediately
   
  by replying to the message and deleting it from your computer.
   
  Thank you.
   
  -
    

  
 
 

  --
  Regards,
  Thomas Dunlap    Chief Technology Officer    [EMAIL PROTECTED]
  Themis,  Inc.    http://www.themisinc.com    1 (800) 756-3000

   
  

  

-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-
  


--
Regards,
Thomas DunlapChief Technology Officer[EMAIL PROTECTED]
Themis,  Inc.http://www.themisinc.com1 (800) 756-3000






Re: Message distribution

2003-02-07 Thread Alex Korenfeld









Thomas

 

The problem
is that the queue name is hard coded. The application knows to communicate only
with one queue.

Then if I
understood you right, we’ll need to write some program, which is triggered and
puts messages into 3 different 

Queue ? 

 

Thanks

Alex.  

 

-Original
Message-
From: Thomas Dunlap
[mailto:[EMAIL PROTECTED]]
Sent: Friday, February 07, 2003
10:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Message distribution

 

Alan,

One thing you could do is to change the queue to an QALIAS over a QLOCAL and
trigger a program you write.  Then 
this program could take in a single message and put out three messages.
 This way the original application remains unchanged 
and you have the ability to intercede. Since the messages would be short lived,
the queue should remain in memory and not have 
a real concern for performance.  

Alex Korenfeld wrote:



Hello all I am looking for solution of sending messages to several destinations.Our application knows how to put message only to one queue. In this pointit's too late to change the code and use distribution list.I was wondering if there is any way configuration wise which allows to forward thesame message to 3 different queues simultaneously. Thanks in advance. Alex. 



 - The information contained in this message is proprietary of Amdocs, protected from disclosure, and may be privileged. The information is intended to be conveyed only to the designated recipient(s) of the message. If the reader of this message is not the intended recipient, you are hereby notified that any dissemination, use, distribution or copying of this communication is strictly prohibited and may be unlawful. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. -  





--Regards,Thomas Dunlap    Chief Technology Officer    [EMAIL PROTECTED]Themis,  Inc.    http://www.themisinc.com    1 (800) 756-3000

 






-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-



Re: Message distribution

2003-02-07 Thread Thomas Dunlap




Alan,

One thing you could do is to change the queue to an QALIAS over a QLOCAL
and trigger a program you write.  Then 
this program could take in a single message and put out three messages.  This
way the original application remains unchanged 
and you have the ability to intercede. Since the messages would be short
lived, the queue should remain in memory and not have 
a real concern for performance.  

Alex Korenfeld wrote:

  Hello all

I am looking for solution of sending messages to several destinations.
Our application knows how to put message only to one queue. In this point
it's too late to change the code and use distribution list.
I was wondering if there is any way configuration wise which allows to forward the
same message to 3 different queues simultaneously.

Thanks in advance.

Alex.
  

-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-
  


--
Regards,
Thomas DunlapChief Technology Officer[EMAIL PROTECTED]
Themis,  Inc.http://www.themisinc.com1 (800) 756-3000






Message distribution

2003-02-07 Thread Alex Korenfeld
Hello all

I am looking for solution of sending messages to several destinations.
Our application knows how to put message only to one queue. In this point
it's too late to change the code and use distribution list.
I was wondering if there is any way configuration wise which allows to forward the
same message to 3 different queues simultaneously.

Thanks in advance.

Alex.
-

The information contained in this message is proprietary of Amdocs,

protected from disclosure, and may be privileged.

The information is intended to be conveyed only to the designated recipient(s)

of the message. If the reader of this message is not the intended recipient,

you are hereby notified that any dissemination, use, distribution or copying of

this communication is strictly prohibited and may be unlawful.

If you have received this communication in error, please notify us immediately

by replying to the message and deleting it from your computer.

Thank you.

-