7,651 questions
0
votes
0
answers
54
views
Is it possible to register a JmsListener programmatically with enabled transactions
Spring documentation describes how to register a JMS listener programatically, but the endpoint API described there does not have any transactional flags available. Is there any way to make this ...
0
votes
2
answers
48
views
Forward a message to an arbitrary list of addresses in ActiveMQ Artemis
I want to create a fan-out on ActiveMQ Artemis.
This is the scenario:
The producer sends a message on the dedicated address (example: inputMsg).
Artemis forwards the message to all consumers that ...
0
votes
1
answer
31
views
How to disable ActiveMQ Artemis security for testing purposes?
I am trying to disable security on ActiveMQ Artemis for testing purposes.
I am using the official Docker image from which I am starting a container with a volume mounted from my host to /var/lib/...
0
votes
1
answer
13
views
While using @JmsListener, using "concurrency" getting active connection more than configured concurrency
While using @JmsListener I'm using the concurrency field to set max active threads for specified listener. However, I'm getting more than number of connections configured.
The listener is active with ...
0
votes
0
answers
64
views
IBM MQ Connection problem - class javax.naming.Reference cannot be cast to class com.ibm.mq.jakarta.jms.MQConnectionFactory
I'm working with the below code (IBM MQ client with Jakarta JMS 3.0):
package org.example;
import com.ibm.mq.jakarta.jms.MQConnectionFactory;
import javax.naming.Context;
import javax.naming....
2
votes
1
answer
77
views
Behavior of IBM MQ when Backout threshold is 0
I have a simple Java application listening to an IBM MQ queue in an asynchronous manner with the acknowledgement mode set as AUTO_ACKNOWLEDGE.
The BACKOUT_THRESHOLD for the queue is set as 0. In the ...
0
votes
1
answer
81
views
How to configure ActiveMQ Artemis embedded in WildFly behind a secured reverse proxy (Kubernetes Ingress)?
Problem statement
I am trying to configure ActiveMQ Artemis embedded in WildFly to work with a secured connection between the client and Kubernetes Ingress.
I have a Java client that connects to a ...
-1
votes
1
answer
27
views
org.wildfly.messaging.activemq.jms-bridge.myJMSBridge is missing,
I have installed Wildfly 34 on my local machine and enabled the JMS queue. Also, I am trying to enable jms bridge in standalone mode. It's not working. It will through some errors. How to solve this? ...
0
votes
0
answers
22
views
Troubling setting selector using the SEMP v2
I am trying to create a selector.
I can 't find here https://docs.solace.com/API-Developer-Online-Ref-Documentation/swagger-ui/software-broker/config/index.html#/ how could I add a selector to a queue....
0
votes
0
answers
55
views
Client failover not failing to backup broker first
I am struggling to get my client to failover as I'd expect in my cluster.
I am expecting that when 1 node fails my client should jump to that node’s backup in the topology. However, what I see occur ...
3
votes
0
answers
104
views
JmsTemplate does not honour the receiveTimeout value
I'm using spring-based application to connect to an IBM MQ server for sending and receiving jms messages. I've set the timeout using the setReceivedTimeout function of the Jmstemplate and I expect ...
0
votes
1
answer
70
views
How can I use the ActiveMQ Artemis management API to apply changes to multiple brokers?
I have a HA replicated cluster setup of ActiveMQ Artemis currently and would like to use the management API from my clients to run a few configuration operations when the brokers start up.
I can't ...
0
votes
2
answers
92
views
Sending JMS message to IBM MQ with Apache Camel is abnormally slow
I'm trying to send a lot of JMS messages to an IBM MQ broker with the awesome Apache Camel library.
When I'm sending 1000 small (less than 100 bytes) messages sending rate is really slow (1 msg/second)...
0
votes
1
answer
49
views
Camel new version thrown IllegalArgumentException Unrecognized Type: [null]
We have just upgraded our Camel project from the version 4.4.0 to the version 4.9.0. And we encountered this error when sending our JMS messages :
java.lang.IllegalArgumentException: Unrecognized Type:...
0
votes
1
answer
17
views
Correlation ID is not always received via JMSInput node
we are using JMSInput node to listen to Rabbitmq queue. But correlation Id/message ID property sent from rabbitmq is not being received in App connect flow. If sent along with Priority property then ...