1,981 questions
0
votes
0
answers
4
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
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
28
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
69
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
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
1
answer
16
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 ...
1
vote
1
answer
86
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", ...
0
votes
0
answers
56
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 ...
1
vote
1
answer
57
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 ...
1
vote
1
answer
51
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. ...
0
votes
0
answers
30
views
Spring Boot Artemis Starter Connecting To WildFly Embedded Artemis With HttpConnector and Https
I am trying to connect a Spring Boot Application (2.7.17) / JDK 17 to a WildFly Server (26.1.3.Final). I am trying to setup a JMS Listener to listen to messages sent to a topic. I am using the spring-...
0
votes
1
answer
94
views
Oracle AQ - Multiple JMS Listeners to dequeue a specific custom 'message type'- is this possible?
I have an Oracle 19 Database in which I planned to leverage Oracle AQ for its queueing capabilities.
During a flow, a message will be created. Messages can be either of "type A" or "...
0
votes
0
answers
49
views
Why MQ Connections keeps on growing when the JMS Listener is not able to listen to the input Queue which is not created - MQRC_UNKNOWN_OBJECT_NAME?
MQ Connections from the application to MQ Channel keeps on growing when there is MQRC_UNKNOWN_OBJECT_NAME exception thrown.
After adding the Queue to the Server only, connection count is stable. ...
0
votes
1
answer
47
views
How to handle closing ExecutorService when used with Spring Integration Flows?
I am using an executor service to ensure that incoming jms messages are acknowledged after I write them to my database - (Using XA datasources and distributed transaction is not an option we have ...