1,980 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
38
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(...
0
votes
0
answers
140
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 ...
0
votes
0
answers
67
views
Spring JMS Listener lose connection with Azure Service Bus
I have a Spring Boot 3.4.6 application with a JmsListener annotated method which receive messages from a Azure Service Bus topic.
Randomly, the connection is lost between the application and Azure ...
0
votes
0
answers
80
views
ThrottlingInflightRoutePolicy is not working in camel throwing OutOfMemoryError when using aggregate EIP
ThrottlingInflightRoutePolicy routePolicy = new ThrottlingInflightRoutePolicy();
routePolicy.setMaxInflightExchanges(20);
routePolicy.setResumePercentOfMax(70);
from("jms:...
0
votes
0
answers
30
views
override default spring jms AbstractMessageListenerContainer.commitIfNecessary function and acknowledge the message explicitly to the broker
I am enabling client acknowledgement in apache camel and spring boot. Here is camel route code
from("queue?acknowledgementModeName=CLIENT_ACKNOWLEDGE")
.routeId("r1"...
0
votes
1
answer
118
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. ...
0
votes
0
answers
52
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 ...
0
votes
2
answers
198
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....
0
votes
0
answers
10
views
spring jms aop - transactional server side mishandling early client abortion
Library: Spring JMS, major version 5.
Issue:
Client side uses JmsInvokerProxyFactoryBean
Server side uses DefaultMessageListenerContainer, with messageListener using JmsInvokerServiceExporter, ...
0
votes
1
answer
46
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
46
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 ...
0
votes
0
answers
99
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 ...
3
votes
0
answers
159
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
208
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
1
answer
32
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 ...