• 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

Question about acknowledge Mode in JMS

 
Ranch Hand
Posts: 108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear all


In JMS Specification, The default acknowledge mode is AUTO_ACKNOWLEDGE.
The explanation as below


AUTO_ACKNOWLEDGE - With this option, the session automatically
acknowledges a client’s receipt of a message when it has either successfully
returned from a call to receive or the MessageListener it has called to process
the message successfully returns.



It means that when receiver calls to receive or onMessage in MessageListener process successfully ,
it will return a acknowledge to middleware to imply it receive message successfully.
The definition is only for receiver.

For the sender,
I want to understand that does the middleware send the acknowledge to sender when it receive the message
from sender successfully?
The JMS specification didn't mention it . But I seem to see some information about this(But I can't find it again)

Can someone explain the question to me?

Thanks
Best Regards
 
Ranch Hand
Posts: 247
Eclipse IDE Chrome Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The acknowledgement message will be sent to JMS Service which sends the message to the receiver... So the end client sending the message does not know if the message has been delivered successfully to the receiver... All managed by JMS Service
 
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If we have access to the server , can we see this Acknowledged Message ??

If so please specify the location , i am using weblogic 11 RI as my server .
 
Ranch Hand
Posts: 76
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ravi Kiran V wrote:If we have access to the server , can we see this Acknowledged Message ??

If so please specify the location , i am using weblogic 11 RI as my server .




Do you have a real need to see it? Think of the acknowledgement as similar to a transaction commit, all it is doing is letting the JMS system know that you did in fact receive the message so that it can stop trying to send the message to you. If for some reason it does not receive an acknowledgement then it will try to send the message again. My understanding is that the acknowledgement is not stored by JMS since it has no value once it is received and the message of out of the topic/queue.
 
Ravi Kiran Va
Ranch Hand
Posts: 2234
Eclipse IDE Firefox Browser Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ran , it was very informative .
 
reply
    Bookmark Topic Watch Topic
  • New Topic