All Questions
18 questions
0
votes
1
answer
295
views
Can't start Listener Java Application using ActiveMQ in IntelliJ
I have a Java MQ Listener Application that listens a Queue. When I use it locally, I use ActiveMQ to send messages, my issue is:
I am having a problem when trying to run this Listener Application in ...
0
votes
1
answer
712
views
Why @JMSListener stops listening events without any error or exception in Spring Boot application
I'm consuming events from Tibco EMS using @JMSListener(destination = "myDestination", concurrency = "1-2") and pushing them to Kafka.
Here's my ConfigClass:
@Configuration
@...
0
votes
1
answer
2k
views
How to configure and enable a JMS Listener to consume messages based on some condition?
I have two listeners(fooMessages and barMessages) in my application, and both of them are connected to same queue. At one point of time only one listener will consume the message from the queue based ...
1
vote
1
answer
6k
views
Spring's CachingConnectionFactory. Why do we need to close sessions although they are to be cached?
I am trying to get my head around the Spring CachingConnectionFactory.
ActiveMQ documentation recommends when using JmsTemplate that a Spring CachingConnectionFactory or an ActiveMQ ...
0
votes
1
answer
597
views
JMS Queues: Re-inserting a message vs Rolling Back
I have a JMS consumer that processes transactions against a third-party service.
When there is an exception calling this third party service e.g a java.net.ConnectException. I would like this ...
6
votes
2
answers
14k
views
Activemq vs rabbitmq [closed]
I have read a few discussions and forums but still fail to understand which one is better rabbitmq vs activemq. I have heard the delay in rabbitmq is more because all traffic is first diverted to a ...
1
vote
1
answer
2k
views
ActiveMQ InactivityMonitor is not closing after elapsing maxInactivityDuration setting
I'm implementing ActiveMQ in my application. I have a use case where in when there is no messages in the remote listening queue i need to close the activeMQ connection and I have to reopen the ...
4
votes
2
answers
6k
views
How to disable InactivityMonitor logs in ActiveMQ?
I have implemented ActiveMQ message broker in my application but whenever I'm connected to ActiveMQ server in my console logs I'm always seeing the below messages:
10:28:05.282 [ActiveMQ ...
5
votes
3
answers
9k
views
Read without removing message from JMS queue
How to read a message from WebSphere MQ without deleting the original message from queue?
I have spring application which reads the message from the WebSphere MQ.
After reading, I have a process ...
1
vote
1
answer
2k
views
duplicate messages with same JMS correlationID
I have a Application where a message(with specific correlation ID) is placed in a topic with four subscribers.When a message is placed it is consumed by 4 subscribers and they are placing the reply ...
0
votes
2
answers
296
views
Queueing tasks via JMS
I would like to make a question to the comunity and get as many feedbacks as possible about an strategy I have been thinking, oriented to resolve some issues of performance in my project.
The context:...
0
votes
1
answer
5k
views
Multiple queues in same Module with only one connection factory in weblogic and spring JMS template
I'm new with JMS and queues. Please excuse my knowledge.
Server : Weblogic 12.x
Frameworks: Spring, Hibernate, Spring JMS with JMSTemplate.
I have a business case where a scheduler wakes up for ...
2
votes
1
answer
797
views
Apache MQ - JMS message selector
I need some help to fetch all the messages for a particular queue which has a particular property on it.
The problem here is I need to match the JMS header property process with processName.As the ...
1
vote
1
answer
3k
views
JMS QueueBrowser hanging on getEnumeration()
I'm fiddling around with a JMS Queue using ActiveMQ and I wanted to work out a Queue Browser. I've looked up some examples on the web but I'm having quite a bit of trouble getting it to work.
Here is ...
9
votes
1
answer
7k
views
Spring as Broker Relay by using an external Message Broker
I would like to use Spring Messaging to create a real time notification system for logged users for my webapp.
I defined a AbstractWebSocketMessageBrokerConfigurer as follows:
@Override
public void ...