• 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 Questions

 
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,
I have some doubts about JMS Persistence using Weblogic 8.1 appln server.
1) I have configured the QueueConnectionFactory and Queues in the Weblogic 8.1 console and set the default deliveryMode as Persistence in the QueueConnectionFactory. But I am not configured the Stores. How is it possible to send the message as persistence without storing the message in a file / database?
2) Now i have configured one JDBC Store and Using PTP method i send a message to the queue. Thereafter I have restarted the server. Whether the message is avaialble now in the queue.
3) In weblogic 8.1 why don't we have any seperate option for configuring the QueueConnectionFactory and TopicConnectionFactory. We have only option
of creating the connection Factory. If so they in the client file for the lookup why should we have to type cast it to their respective class . Whether the application server is implemented this logic or what?
QueueConnectionFactory qcf = (QueueConnectionFactory) ctx.lookup("ConnectionFactory");
TopicConnectionFactory tcf = (TopicConnectionFactory) ctx.lookup("ConnectionFactory");

4) To make Durable Subscriber why should we have to set the client ID in the ConnectionFactory. If so then we have separate Connection Factories for Durable subscription. Am I right.

Regards,
M.S.Raman
Regards,
M.S.Raman
 
The human mind is a dangerous plaything. This tiny ad is pretty safe:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic