• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Copy message from one Queue to another

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a requirement: to copy MQ message written to a Queue (say, Q1 owned by interfacing appln) to another Queue (say Q2 owned by us and used by many other interfacing applications). Other than writing a MDB, is there any way I can copy message from Queue Q1 to another Q2?

The interfacing application does not want to write to our Queue Q2 because they are short of resources & do not want to touch their setup for now

Thanks for your help
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yeah, really an MDB or some other type of listener or interceptor will be needed. Interceptor is great because it is decoupled, and can be added or removed whenever. JBoss ESB could also intercept the message and send it to two different end-points or queues.

Mark
 
P Igor
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am using Websphere. Anything in WAS just like JBoss ESB??
 
Mark Spritzler
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by P Igor:
I am using Websphere. Anything in WAS just like JBoss ESB??



Wish I knew to help you out, but ask your local IBM rep. I am sure it will cost money, you can still use JBoss ESB and not need JBoss App Server, and still use Websphere.

Mark
reply
    Bookmark Topic Watch Topic
  • New Topic