• 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
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

JMS message Persistence

 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
can any body tell me how to check JMS message is persistence or not in the jboss.because of this problem i am getting the Heap error in the application server as well as our application.
 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think that's related to the fact that your message is persistent or not. Java Heap size error raises usually when you're injecting too many messages more than capacity of your heap sizes. Temporary you can increase the heap size, but I guess it's rather the problem of the internal data storage that JBoss uses. It's more a development product rather than a product DB. You should use more persistent DB instead.

Well, you check this in your code level not in Jboss. In your code, you set these, and your delivery mode would be persisten.



Maybe you mean Physical queue, so in that case by adding these lines



in nameOfYourService\deploy\jboss-messaging.sar

Hope I could answer your question.
Cheers,
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic