• 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

Questions on MDB

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Can anybody please clarify by doubts.

1. What is a replyTo queue? How to configure and use it.

2.How can I specify an expiration time for a message.

3.If I have found some problem while processing a message , I heard there is an option that We can send them to some error queue which is configured as Backout queue. How can we do this backout queue configuration. How will we specify which is backout queue and which is normal queue. The procedure is same for both types of queues?

4. What is JAXM. Is it related to webservices. Whare will we use it.

5.What is a message push. Can anybody please tell me how to specify and where to specify. What is meant by creating multiple queue sessions and setting up a thread manager ( with threadpool) in onMessage() method.

6.What is meant by a scheduler like quartz ( open source scheduler). If I want to do some thing for each new employer entry then we can write triggers in DB. I heard schedulers are best for this task. Can anybody please tell me how to use them?

Thanks in advance.Appreciate your help.
 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Q1) The replyTo queue is used to send the response after its has been processed by the MDB. Say, if some application X is waiting for the response generated by the MDB.

Q2) The Exipration value can be set using setJMSExpiration method of javax.jms .Message.

Q3) The blackout queue is usually vendor specific.
 
sai dev
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you very much bhasker. So, replyTo queue is just another queue to which MDB will send the message which in turn consumed by another application. Am I correct.

Can You please tell whether web sphere have this blackout queue option. And where can I get the information on this.
 
reply
    Bookmark Topic Watch Topic
  • New Topic