Questions tagged [durable-subscription]

27 questions
0
votes
0 answers

How can I run a PHP stomp file as a background process?

I have installed Apache ActiveMQ and PECL Stomp, enabling the stomp.so extension on PHP. I have written a PHP file which connects to a TCP address and successfully consumes messages from the topic, when run through the Ubuntu terminal command line…
RodneyUK
  • 1
  • 1
0
votes
0 answers

How to unsubscribe from Camel JMS durable subscription

The Camel documentation shows how to subscribe to a (non-)shared durable subscription, but what about unsubscribing? Using AzureServiceBus it is not possible to set auto delete on idle for subscription and we can't use this for topics unless we open…
0
votes
1 answer

ActiveMQ new topic, without consumer, doesn't discard messages

I'm building a software solution which creates JMS topics per new category of something. The topic is created when the first round of data is integrated and must be comunicated. Durable subscriptions to that topic are created by consumers, but only…
Cristian
  • 417
  • 1
  • 9
  • 18
0
votes
0 answers

Fixing the topic destination in IBM MQ (using WebSphere Application Server 8.5.5)

I have an application running in WAS 8.5.5, which uses pub sub with IBM MQ, and durable subscribers. At a client site, we see intermittent problems re-opening subscriptions to the topic on server startup. When I look in MQ Explorer at the current…
0
votes
1 answer

JBoss AMQ / ActiveMQ Artemis: Pre-configure Durable Subscribers

I have a Red Hat AMQ (which is based on ActiveMQ Artemis) broker and I would like to make use of durable subscription (or equivalent) feature, so that I will have multiple OpenWire JMS subscribers subscribing to the events of our application which…
Adrian Shum
  • 38,812
  • 10
  • 83
  • 131
0
votes
1 answer

Implementing Durable Subscription on ServiceMix

I currently am using ServiceMix to route messages using QPID libraries. My working config is below :
user4889345
0
votes
0 answers

Spring 5 dynamic JMS durable subscription

I have a question concerning the creation of a dynamic JMS durable subscriptions and, more generally, about how to deal with dynamic situations in Spring 5 and SpringBoot. For example, in order to make a durable subscription one needs the…
user6882156
0
votes
1 answer

Use case scenario of durable listeners/consumers

So I am creating concurrent consumers to a topic i.e. multiple listeners. I am configuring them to be durable. @Bean public DefaultMessageListenerContainer listenerContainers() { DefaultMessageListenerContainer container = new…
africandrogba
  • 334
  • 1
  • 3
  • 21
0
votes
1 answer

Spring - ActiveMQ - Durable Subscription - Close Connection and Resubscribe to get the offline messages

I want to implement a solution in Spring-JMS with activeMQ where I want to create a durable subscription to a topic. The purpose is that if a subscriber closes the subscription for a while and once again recreates the durablesubscription with same…
learner
  • 906
  • 2
  • 10
  • 39
0
votes
2 answers

Unsubscribe durable subscribers with ActiveMQ

I'm trying to UNSUBSCRIBE durable subscribers from TOPICS. My app is a kind of social network : each user is a topic for other users. So, each time a user is doing something, his friends are notified. Of course, a subscriber may unsubscribe from a…
Lovegiver
  • 413
  • 6
  • 22
0
votes
1 answer

Durable subscription ID cannot be read by CSV Data Set Config in JMeter

I need to get 10 different durable subscribers added to a message broker by reading the durable subscription IDs to be set from a csv file which contains integer values from 1 - 10. However, JMeter was failing to read the value instead it tried to…
jdk1.7
  • 166
  • 1
  • 9
-1
votes
1 answer

When are ActiveMQ durable subscriptions a bad idea?

My understanding is that durable subscriptions, when used with ActiveMQ, allow the consumer to receive all messages that are published to a topic, say if there was a lost connection and then connectivity is restored. Having said this, it seems like…
mig81
  • 127
  • 11
1
2