All Questions
Tagged with message-queue jms
326 questions
0
votes
1
answer
84
views
ActiveMQ Artemis wildcard security settings not behaving as expected
While trying to set up a nice and automatic way to configure ActiveMQ Artemis users I stumbled on the wildcard routing that can be used within the security-settings block.
Leveraging this would make ...
0
votes
2
answers
156
views
WSO2 ESB: Handling Retries and Error Codes in Message Processor with Multiple Message Stores
I'm developing an API using WSO2 ESB where I have configured two message stores and a message processor. In the scenario I'm facing, the message processor retries failed messages up to 5 times, but I ...
0
votes
0
answers
130
views
Java and WebSphere MQ server integration
I am using IBM Websphere MQ of v7.5.0.6 which is installed on Linux 3.10.0-1160.90.1.0.1.el7.x86_64. I have created the required queue manager and channel.
I need to send a message to a queue hosted ...
2
votes
1
answer
2k
views
What is the alternative for Apache activemq-broker jar which has support for Jakarta as in JDK 17 and Spring 6?
I have an application that is based on Spring 5 and it uses Apache activemq client and broker libraries. We are now migrating to Spring 6 which requires Jakarta namespaces as specified by JDK 17. But, ...
1
vote
0
answers
12
views
Can we do JMS point to point testing which we do in JMeter in Karate Framework [duplicate]
Can we setup the JMS point to point setup which is currently done in JMeter from Karate Framework
We can pass .p12 ssl file but how do we pass JNDI properties
0
votes
2
answers
70
views
ActiveMQ topic starvation
I have one ActiveMQ 5.16 broker configured on Amazon and two topics, say topic1 and topic2, and I'm connecting using a JMS producer and consumer.
My question is if one of the topics is extremely high ...
0
votes
1
answer
50
views
Unable to map end to end response time in JMS Sampler (Publisher and Subscriber)
I am using JMS Publisher and Subscriber sampler.
Step 1 : JMS Publisher - For sending message to queue.
After arriving in queue there is some processor who processes the message and then after ...
1
vote
1
answer
68
views
My code receives the message from the queue multiple time, I want to receive it only one time. How can I do it?
I am new, so my question is relatively easy, I guess.
I am using Websphere Application Server platform and default JMS provider to send and receive message from queue. This is how my app looks like:
...
-1
votes
1
answer
41
views
Long Link RMQ clustering
Sorry for what may seem a simple question to some, but we currently use RMQ for pretty simple client/Queue/Consumer type transactions. Some use return message queues, while others are just simple '...
-1
votes
1
answer
1k
views
How to have single ConnectionFactory, JMSListener and JMSTemplate for Multiple QueueManagers
I am trying to create a single connection factory, single JMS Listener and single JMS template for connecting, listening, sending data to multiple Queue Managers.
I tried to access properties from yml ...
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
@...
1
vote
0
answers
376
views
CamelCorrelationID/JMS CorrelationID implementation
I am confused how to implement CamelCorrelationID/JMSCorrelationID in a way where each application listen to its own response from server using messaging system. The queues are shared in this scenario....
1
vote
1
answer
1k
views
Batch fetching from JMS queue
I need to implement the following workflow:
Every N milliseconds fetch all available messages from JMS queue, but not more than K items
Do some processing
Acknowledge all of them once processing is ...
0
votes
2
answers
1k
views
What is the purpose of setting QueueManager property for IBM MQ?
Following this example of sending messages to queue let's look at the part of setting connection factory properties
cf.setStringProperty(WMQConstants.WMQ_HOST_NAME, HOST);
cf....
2
votes
1
answer
2k
views
IBM MQ message groups
I'm currently faced with a use case where I need to process multiple messages in parallel, but related messages should only be processed by one JMS consumer at a time.
As an example, consider the ...