• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Persisting messages in JMS

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,
JMS question. I have a topic publisher/subscriber set up on a single topic. When both are logged in and I post a message, I receive it without any problem.
But if my publisher publishes a message while the subscriber isn't running, and I then run the subscriber, the message never gets delivered. As long as the topic is alive, shouldn't the message persist on the topic until the subscriber pulls it off? If so, where should I look to correct this issue?
Thanks!
Matt
 
Ranch Hand
Posts: 8953
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use Durable Subscription.
http://www.jguru.com/faq/view.jsp?EID=1176
JMS Tutorial
http://java.sun.com/products/jms/tutorial/1_3_1-fcs/doc/advanced.html#1024758
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic