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
1
vote
1 answer

How to apply selectors on queues to topic from SolAdmin

Right now I have one single topic which has many different types of messages. Lets say Topic1 has messages of type A, B and C. I have three Queues which are subscribed to the topic (QueueA, QueueB, QueueC). I want each queue to consume only the…
chey
  • 21
  • 2
1
vote
2 answers

Browsing JMS Durable Subscription

One of the projects I'm on is currently using a JMS Topic setup, with the client application using containing listeners for two different durable subscribers. Long story short, we're looking at several different ways to solve an ordering issue, and…
Karl
  • 27
  • 6
1
vote
0 answers

How to Trigger & Submit SAS job through LSF when receiving JMS Message on a Topic

I have to find out a mechanism to have the SAS Middle Tier hosting a JMS Listener subscribed to certain JMS Topic, and whenever a message appears on the JMS Topic the JMS Listener sitting on the SAS Middle Tier should trigger LSF to execute the SAS…
mhasan
  • 3,703
  • 1
  • 18
  • 37
1
vote
1 answer

Can JMS topic strings contain spaces in them?

Can a JMS topic string contain space ? EG: "/TOPIC STRING/" When i try to publish to this topic, it says it is an invalid destination.
VikramR
  • 83
  • 8
1
vote
1 answer

How to make messages in a topic in weblogic server first in first out

I am using Oracle Fusion Middleware 12.1.3. Weblogic Server 12.1.3 and OSB 12.1.3. I have created 1 connection factory and one topic. I have one producer sending messages to the topic and 3 consumers(subscribers) I have also set redelivery failure …
Simran
  • 69
  • 2
  • 13
1
vote
2 answers

IBM MQ Topic String subscription and filter

If I have a topic tree like - Sports/NBA/ - Sports/NHL/ and If I would like to get the notifications for every NBA Team I would subscribe to a topic string like: Sports/NBA/* But what if I'm not interested in 2 Teams from the whole list ? If there…
FreshMike
  • 481
  • 1
  • 6
  • 26
1
vote
2 answers

Accessing messages in Dead letter Queue of ActiveMQ and redeliver to webservice or socket after consumption

Iam writing an application in Java using ActiveMQ where iam using a producer and a asynchronous consumer mechanism where the messages sent by the producer are not consumed due to network failures.Hence these messages are sent to dead letter queue of…
Chetan Sistla
  • 165
  • 2
  • 16
1
vote
1 answer

how to check if a message has expired or not in activemq in the producer

Iam working on activeMQ where iam sending a message to the consumer from producer via the queue.Assume that my consumer has failed due to some reason. I have set the expiry time to the message as 15 mins so the message from producer stays on the…
Chetan Sistla
  • 165
  • 2
  • 16
1
vote
1 answer

How to subscribe to a JMS topic from javascript - need a full example

I'm using an active mq to generated jMs topic messages and I would like to be able to subscribe to a particular topic from javasript. I need a full example on how to do this. Thank you very much
user3470688
  • 539
  • 6
  • 21
1
vote
0 answers

Jboss no message recived for Consumer

Hello I would like to ask for help regarding Jboss, I've got some message in jboss server 13:07:25,452 WARN [SimpleConnectionManager] A problem has been detected with the connection to remote client 5c4o1h-e1pcdx-iqypqcxv-1-iqypqebx-d, …
mark ortiz
  • 659
  • 1
  • 6
  • 13
1
vote
1 answer

JMS durable subscriber in a cluster with multiple instances

I am going to be using Payara BTW.... Suppose I have: A JMS Topic An MDB configured as a durable topic subscriber Multiple instances of the MDB are deployed across the cluster and they are all using the same client ID value to make the durable…
1
vote
1 answer

wildfly 10, JMS, MDB, topic does not receive message

I have two message driven beans @MessageDriven(name = "SubscribersTopicQueueMDB", activationConfig = { @ActivationConfigProperty(propertyName = "destinationLookup", propertyValue = "jms/topic/Subscribers"), …
Armen Arzumanyan
  • 1,939
  • 3
  • 30
  • 56
1
vote
1 answer

MQTT connect to ActiveMQ TOPIC take lots of time in Event Receiver of WSO2 CEP

Update In the source code of MQTTAdapterListener of carbon-analytics-common project as this link The run() will sleep the thread and I believe that is the reason why the MQTT connection will take so long. @Override public void run() { while…
Bruce
  • 647
  • 2
  • 12
  • 30
1
vote
1 answer

How to connect to remote weblogic JMS server?

I have a jms server running on weblogic and I need another application running on another server (weblogic as well) to listen to JMS topics sent by the JMS server mentioned before. The fact is that I don't know how to do that. I mean, what do I need…
Luis Celestino
  • 87
  • 1
  • 10
1
vote
2 answers

jms Queue vs in memory java Queue

I have a situation where I need to read a(on going) messages from a topic and put them on another Queue . I have doubts do I need jms Queue or I can be satisfied with an in memory java Queue . I will do the reading from the Queue by other thread(s)…
user5157427
  • 241
  • 2
  • 7
  • 17