1,972 questions
Score of 0
1 answer
52 views
How to get SQLXML from OracleOpaque or alternatives?
I have a Java 21 Sping 3 project which uses ojdbc17 and Jakarta JMS libraries. It has a class which implements the org.springframework.jms.support.MessageConverter interface and its
Object fromMessage(...
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 0
1 answer
188 views
ActiveMQ Artemis message is lost
I am using ActiveMQ Artemis 2.27.1 from my Spring Boot application. I see that a producer publishes message to a queue, but the consumer is not called even once and the message is sent to the DLQ. ...
Score of 0
0 answers
62 views
Messages piling up in Solace queue
In my application I am consuming messages from Solace queues, but I am observing some intermittent messages going into the queue even thought there is no ingress/egress at that time, and we have an ...
Score of 0
2 answers
281 views
How do I instrument a non-supported IBMMQ/Jms service within an instrumented Spring Boot App without using Otel Java Agent?
Note: I am not using Otel Java Agent, I will elaborate on it in the last section.
I have a Spring Boot App with the following services implemented:
Spring Kafka Consumer using org.springframework....
Score of 0
1 answer
70 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 ...
Score of 0
0 answers
54 views
Apache Activemq classic scheduled send seems to be bugged with Spring Boot JMS
Unless I'm misreading the apache activeMQ docs, it appears that the use of AMQ_SCHEDULED_DELAY, AMQ_SCHEDULED_PERIOD, and AMQ_SCHEDULED_REPEAT is bugged when they are used together when sending ...
Score of 0
0 answers
117 views
JMS: IBM MQ - using setConnectionNameList to configure multiple MQ Connections
tstu2012643.xyz.com:51671/GL210031/CLIENT.T.POTRANS?transport=1
tstu2012644.xyz.com:51671/GL210032/CLIENT.T.POTRANS?transport=1
Considering the above two connection properties of an IBM MQ, I am ...
Score of 3
0 answers
180 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 ...
Score of 0
1 answer
257 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 ...
Score of 0
1 answer
51 views
Identifying when a spring integration JMS Outbound Adapter write commit is successful?
Is it possible to attach a TransactionSynchronizationFactory to an outbound JMS Outbound Adapter?
We are trying to send a message to a JMS queue and want to update a database once the JMS send is ...
Score of 1
1 answer
259 views
AWS SQS and Spring pollTimeoutSeconds difference
I hava been reading about using pollTimeoutSeconds in @SqsListener from Spring Cloud AWS.
Look at this configuration:
@SqsListener(value = "my-queue", pollTimeoutSeconds = "10", ...
Score of 0
0 answers
79 views
How to reduce IBM "MQ get without data" call using DefaultJmsListenerContainerFactory
In our setup, we are observing a significant number of 'MQ get without data' messages alongside 'MQ get with data' messages. With the following configuration, we see 85 calls per second for 'MQ get ...
Score of 1
1 answer
117 views
Connect from remote client to WildFly Topic
I need to send and receive messages from a standalone Spring Boot application (2.7.17) to a topic to the ActiveMQ Artemis within WildFly 26.1.3 with a (non-durable subscription). I started with the ...
Score of 1
1 answer
107 views
JMS application unable to consume from Oracle Sharded Queue
We have a system that successfully send messages across a normal, non-sharded Oracle Advanced Queue (AQ), but when we change to a Sharded Queue, the Java application is unable to consume the messages. ...