• 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

JMS Store

 
Ranch Hand
Posts: 312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
What is use of JMS Store in Weblogic6.1?
Regards,
M.S.Raman.
 
Ranch Hand
Posts: 293
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Malli,
The JMS Store is the place where WebLogic stores persisted messages.
Messages may either be designated as persistent (guaranteed to be delivered at least once, and not considered sent until it has been safely written to the JMS Store), or non-persistent (also guaranteed to be written once unless there is a system failure, in which case the message may be lost).
A non-persistent message will not be redelivered once it has been acknowledged. A persistent message, however, will be saved to the JMS store you set up in the Admin Console (either a file, or a JDBC database), making redelivery possible.
If you do not assign a persistent store for a JMS server, persistent messaging is not supported on that server (all messages will be deleted).
--------------------
Joe McGuire
Sun Certified Java™ 2 Programmer, BEA WLS Certified Developer
 
mister krabs
Posts: 13974
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving this to the WebLogic forum.
 
Malli Raman
Ranch Hand
Posts: 312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Joe. I have two more doubts in Weblogic6.1.
1) How will you implements Durable Subscription for WLS6.1.(Where the server will store the information).
2) In Weblogic5.1 and MQSeries, you can view the number of messages in the Queue. But in WLS6.1 you can't be do the same(even the administrator). If we want to know about the number of messages in the queue is there any other way other than using the queueBrowser option.
Thanks & Regards,
M.S.Raman.
 
Hey! Wanna see my flashlight? It looks like this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic