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
2
votes
0 answers

logstash Input painfully slow while fetching messages from activemq topic

I have configured JMS input in logstash to subscribe to JMS topic messages and push messages to elastic search. input { jms { id => "my_first_jms" yaml_file => "D:\softwares\logstash-6.4.0\config\jms-amq.yml" yaml_section =>…
YetAnotherBot
  • 1,937
  • 2
  • 25
  • 32
2
votes
1 answer

Can the dot/period be used in the topic name(destination) of ActiveMQ by MQTT

We are trying to subscrib a topic named message/abc.com/broadcast by a MQTT client MQTT.fx on the ActiveMQ 5.15.8. However, the ActiveMQ console shows the subscribed topic is message.abc/com.broadcast. We see the MQTT slash seperator will be…
Bruce
  • 647
  • 2
  • 12
  • 30
2
votes
1 answer

How to call operations on JMS temporary queue from JBOSS CLI

I am trying to call operations such as listDeliveringMessages() on a temporary Queue (say fe517553-6c53-42d6-8aaa-d8ea154fd8b0), created by a jms.Topic in JBoss 6.4.0.GA EAP / 7.2.x. I need to do that from JBoss CLI. I got close to do that by…
LoreV
  • 575
  • 5
  • 25
2
votes
2 answers

JMS Topic context lookup issue

I am trying to lookup a JMS TopicConnectionFactory using JNDI in Websphere Application Server. I have done the jndi setup correctly in the server. I have deployed my application in the server. I have designed 3 java classes for…
Som
  • 1,522
  • 1
  • 15
  • 48
2
votes
0 answers

TCPLink Error: invalid magic in the message

Below is the Java code to consume the durable subscription private void execute()throws Exception { logger.debug("Creating JNDI context"); Properties jndiProps = new Properties(); jndiProps.setProperty(Context.INITIAL_CONTEXT_FACTORY,…
Rajiv Kumar
  • 194
  • 9
2
votes
1 answer

Configure AWS SNS with JMS

We have Amazon SQS Java Messaging Library as a wrapper for JMS around SQS. Similarly, we had to migrate our active mq topic services to AWS SNS. I was looking around for a similar approach. Is there a suitable API for it? I am already making use of…
user3250183
  • 506
  • 6
  • 19
2
votes
0 answers

Camel sftp Writing file failed with: Cannot store file

I have couple days, look around apache Camel and transfer files over sftp server to jms queue or topic. I faced a problems at a level of configuring an endpoints (consumer) , also routes (from file to sftp, from sftp to jms.....). Nothing works to…
Chayma Sakouhi
  • 79
  • 2
  • 10
2
votes
1 answer

Spring Integration jmsmessage-driven-channel-adapter with IBM MQ

I have written code to read message from IBM MQ using Spring Integration JMS-message-driven-channel-adapter but not able to read message from queue can anybody help me out below is my configuration.
2
votes
2 answers

Topic subscriber connection in Tibco

I have a process that starts with a topic subscriber. What happens with a topic subscriber in Tibco if the EMS server shuts down? I guess it will reconnect. But how many times or for how long it will try to reconnect?
Adrian Ber
  • 20,474
  • 12
  • 67
  • 117
2
votes
1 answer

How to subscribe a topic in WSO2 MB 3.1.0

I've been working with the WSO2 Message Broker for a while and I clearly understood the way of publishing and consuming a message to and from a queue as well topics. According to this, it has not been mentioned anywhere how could I subscribe to a…
2
votes
1 answer

How to reindex lucene index in a cluster of servers using JMS topic in hibernate search 5.3

I am new to hibernate search and i am using hibernate search 5.3 for my application. I have a cluster of servers which should maintain a lucene index and if there's a change in entitty, I am trying to put it in a jms queue and let all the other…
2
votes
1 answer

How does a Topic Message Driven Bean behave in Websphere 8.5.5 Cluster Environment

What I would like is to run a Message Driven Bean that listens onto a (Websphere MQ7) topic. I would like to deploy my application on a Websphere 8.5.5 Cluster containing two cluster members. If a message for the topic arrives I would expect that…
Dirk
  • 1,064
  • 1
  • 11
  • 13
2
votes
1 answer

Jms message acknowledgement

I have an issue related to java messaging service ... Problem: suppose my JMS publisher sends me 5 messages... When I receive first two messages my app processes them and acknowledges them... So that it is removed from the topic... Wen I receive 3rd…
2
votes
0 answers

How can I do a Storm spout that listen an ActiveMQ topic?

I programmed a Storm topology that listens on particular topic on kafka with its spouts. Now I have to migrate it on activeMQ. Is possible to reproduce these topics with activeMQ and create spouts that listen them as I did with kafka? I googled it,…
Pietro
  • 125
  • 8
2
votes
1 answer

One JMS Consumer stops listening active mq topic while second do not

A spring quartz process runs every 15 minutes in my project i.e 96 times a day. This fetch certain records from database and POST it on a REST service (running on JBoss 7). These records are in general 50 to 100 in count. On REST service there…
shaILU
  • 2,050
  • 3
  • 21
  • 40
1 2
3
19 20