Questions tagged [jms-topic]

A distribution mechanism for publishing messages that are delivered to multiple subscribers.

The use case for JMS Topic includes these considerations:

  1. A distribution mechanism for publishing messages that are delivered to multiple subscribers.
  2. Multiple consumers require delivery of the message.
  3. There is a timing dependency between publishers and subscribers. The publisher must create a subscription in order for clients to be able to subscribe. The subscriber must remain continuously active to receive messages, unless it has established a durable subscription. In that case, messages published while the subscriber is not connected will be redistributed whenever it reconnects.
300 questions
0
votes
1 answer

Not able to send message to Solace JMS Queue

I need to push message to Solace JMS queue Webpshere but I am getting below error during send message. I have also increase message listener size but not solved problem. Error: 503: Spool Over Quota. Message VPN limit exceeded Caused by:…
user2387280
  • 85
  • 2
  • 12
0
votes
0 answers

Should a JMS topic with no clients be automatically closed?

I am trying to test a single component of a system that publishes messages to a JMS topic. It seems to run fine for a few hours before the connection is automatically closed and I get the following message in the log file: WARN …
robingrindrod
  • 474
  • 4
  • 18
0
votes
1 answer

Apache Camel JmsComponent - How to check if there is a message in topic?

I have a camel route to consume a message from a JMS topic. When the route starts, and there is no message in the topic, I want to raise an exception and stop the process. I'm using the JmsComponent from Apache Camel that use the…
0
votes
1 answer

JMS topic subscriber reconnection

I'm using Glassfish 3.1.2.2 with OpemMQ 4.5.2 (remote mode). In my application, there is a subscriber of a JMS topic, that receives messages asynchronously, using a MessageListener. When broker is stopped and started after a while, messages…
andrucz
  • 1,971
  • 2
  • 18
  • 30
0
votes
2 answers

Implementing asynchronous publish subscribe topic in tibco ems

my scenario is that me as a movie distributor, need to update my clients on new movies, I publish this information on a topic with durable subscribers and clients who want to buy the movie will express their interest. However, this is where things…
laycat
  • 5,381
  • 7
  • 31
  • 46
0
votes
0 answers

Durable topic subscription and dead.letter.address and message redelievery

I have jms topic, which has one or more durable subscriptions. I have situation when one subscriber causes roll-back and another success. Message lands in dead-letter-address. After I resolve a bug and message should be able to proceed, I want to…
srnjak
  • 915
  • 7
  • 21
0
votes
1 answer

Multiple servlet request not able to call JMS object's method

I have a JMS object appended to request object and in the doPost() method, the object's get method is being called to get current topic data which will be sent to client in response continuously. On another user request concurrently, I do not see in…
user3747396
  • 141
  • 12
0
votes
1 answer

Saving JMS message sent on Topic into Gemfire using Spring

the problem in that I am receiving JMS message on Topic, and I need to persist the message structure into GemFire (classic) region MessageStructInfo. The message has data in its structure like < messagenotification > <…
0
votes
1 answer

Topic is not delivered to all Message Driven Beans in a Glassfish Cluster

I have created a topic factory and a topic pool on a glassfish 3.1.2.2 cluster. The cluster has a embedded conventional with a master broker jms installed. After sending a message into the pool I thought all the messsage driven beans that are…
Hasan Tuncay
  • 1,090
  • 2
  • 11
  • 30
0
votes
1 answer

Usage of JMS to call a API which delivers a message

I would like to know if using a JMS in the below scenario is feasible or not. I am adding a feature of calling an API service which will dispatch the emails to the customer. So i thought of implementing a JMS in my application where i would put the…
0
votes
1 answer

One JMS message copied to two queues

How do I configure activemq such that a JMS message published to a topic is passed on to two JMS queue. Is this possible in activemq? Or Is it better to use a simple topic with two subscribers. Both picking up their own copy of a message.
A j
  • 1,069
  • 2
  • 16
  • 29
0
votes
1 answer

Make the delay in websphere JMS message publishing using the setLongProperty( ) method

Is websphere implementation of JMS having some property to set the delay in sending the message to JMS Queue. Like the ones we have as follows a) In ActiveMQ ::msg.setLongProperty(ScheduledMessage.AMQ_SCHEDULED_DELAY, delay) b) In JBOSS :: JBoss…
0
votes
2 answers

Concurrency with JMS topic in Spring

How to use concurrency in jms topics using spring? Like for queues we can set maxConcurrentConsumers properties to the desired number. But if I do that for a JMS topic, it leads to concurrent consumption of the same message, which is not…
0
votes
2 answers

Mule with JBOSS 5.1 topic

I need to subscribe to a JBOSS 5.1 topic from Mule. Here is the configuration I am using.
0
votes
1 answer

How to send incremental updates and snapshot sync using ActiveMQ topics

Here is my use case: I am developing a trading application and i want to send incremental stock updates (bidQty etc) to active consumers instead of the whole quote and a snapshot update to a new consumer (to start with). Now, is it possible to…
rajTho
  • 51
  • 1
  • 4