7,633 questions
Score of 1
0 answers
96 views
How to prevent automatic queue creation
I'm creating a microservice and I'd like it to not automatically create queues in RabbitMQ.
I created a RabbitMQ user via the GUI, with no configuration permissions, only read and write, to avoid ...
Score of 0
0 answers
121 views
how to rectify javax.jms.JMSException: Failed to create connection?
We are(multiple JAVA applications) connecting to IBM MQ using the JMS / JNDI approach in a WebSphere Application Server environment.
Each request follows the below high-level flow:
Create a JNDI ...
Score of 1
0 answers
48 views
TIBCO BWCE Send Message Did Not Send ApplIdentityData MQMD to MQ
I am using TIBCO BWCE Studio 2.10 with the JMS Send palette to send messages to IBM MQ. I need to pass the MQMD ApplIdentityData to the receiving application.
My current JMS Send configuration is:
...
Score of 0
0 answers
47 views
TIBCO BWCE Send Message Did Not Send ApplIdentityData MQMD to MQ
I am using TIBCO BWCE Studio 2.10 with the JMS Send palette to send messages to IBM MQ. I need to pass the MQMD ApplIdentityData to the receiving application.
My current JMS Send configuration is:
...
Score of 0
0 answers
95 views
How to use Request/Reply Pattern using Smallrye with MQ in Java
I’m trying to implement an RPC-style Request/Reply pattern using SmallRye Reactive Messaging with IBM MQ in a Quarkus application.
I already know how to implement this pattern using plain JMS:
...
Score of 0
1 answer
119 views
java.lang.ClassNotFoundException: class org.apache.activemq.jndi.ActiveMQInitialContextFactory not found at run time
WSO2 EI 6.6.0 is configured and run together with ActiveMq 5.16.4. Sending and receiving JMS messages works fine but time to time following error occurs at run time. To solve it, it is necessary to ...
Score of 0
0 answers
62 views
QPID JMS OAuth Token Refresh
I am using Qpid JMS to connect to RabbitMQ using OAuth.
I have read about the Connection Extensions section of the Qpid JMS documentation, which describes how to update the token on a ...
Score of 0
0 answers
62 views
How to route messages from a single JMS producer to one of multiple MDBs based on conditions?
I have a JMS-based application setup where one application(3rd party component with no code level access, but configurable) acts as the only message producer. This producer sends messages to the ...
Score of 0
1 answer
98 views
Camel JMS component does not cache the connection
We are currently using apache camel to build routes between an IBM Mq broker and some other ones (basically : a messaging bridge)
As an input component, we use the JMS one.
It is performing.... quite ...
Score of 1
1 answer
121 views
WebLogic 12c Foreign Server fails to authenticate with WildFly 26 JMS: JMSSecurityException (Username: null)
I have a Java application running on WebLogic 12c that sends JMS messages. We're trying to configure it to send messages to a remote JMS queue on a WildFly 26 server.
When we attempt to send a message,...
Score of 0
0 answers
174 views
How to bypass rollbacks and retries for Spring JmsListener specific exceptions?
This is for a Spring JMS listener which is configured with DefaultJmsListenerContainerFactory with sessionTransacted(true), an error handler and a message converter which converts a message to a pojo ...
Score of 1
1 answer
71 views
Qpid JMS: setClientID() hangs indefinitely, thread stuck on BalancedProviderFuture
I'm using Apache Qpid JMS to create a JMS connection and set a client ID. The following line hangs indefinitely, and no logs appear after this point:
JmsConnection conn = (JmsConnection) factory....
Score of 1
1 answer
149 views
Mule 4.9 JMS appender error: Modules javax.jms.api and jakarta.jms.api export package javax.jms to module org.eclipse.sisu.inject
I am new to mule and trying to push logs to activemq queue using jms appender. I was getting error while using jms appender with mule 4.3
2025-06-05T07:02:25.588889200Z WrapperListener_start_runner ...
Score of 0
0 answers
133 views
Slow message delivery in Java application using Oracle Advanced Queue
I have a Java application that connects to Oracle Advanced Queue (AQ) and listens for various event types. The Java server and the Oracle server are on different machines but within the same data ...
Score of -1
1 answer
320 views
Spring boot 3 + ActiveMQ + XA-Transactions + Durable Subscription to JMS Topic dows not work properly
Currently, I can't get XA-Transactions AND Durable Subscription working at the same time. A Demo Projekt is here: https://github.com/proxora/Spring-boot-3-ActiveMQ-XA-Transactions-Durable-Subscription-...