Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
36 views

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(...
gokudo's user avatar
  • 1
0 votes
0 answers
135 views

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 ...
user518066's user avatar
  • 1,467
0 votes
0 answers
57 views

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 ...
Franck Anso's user avatar
  • 1,478
0 votes
0 answers
76 views

ThrottlingInflightRoutePolicy routePolicy = new ThrottlingInflightRoutePolicy(); routePolicy.setMaxInflightExchanges(20); routePolicy.setResumePercentOfMax(70); from("jms:...
Mallu Golageri's user avatar
0 votes
0 answers
28 views

I am enabling client acknowledgement in apache camel and spring boot. Here is camel route code from("queue?acknowledgementModeName=CLIENT_ACKNOWLEDGE") .routeId("r1"...
Mallu Golageri's user avatar
0 votes
1 answer
100 views

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. ...
Noshaf's user avatar
  • 256
0 votes
0 answers
47 views

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 ...
Yogi's user avatar
  • 11
0 votes
2 answers
166 views

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....
ALVIN's user avatar
  • 1
0 votes
0 answers
9 views

Library: Spring JMS, major version 5. Issue: Client side uses JmsInvokerProxyFactoryBean Server side uses DefaultMessageListenerContainer, with messageListener using JmsInvokerServiceExporter, ...
haleyk's user avatar
  • 330
0 votes
1 answer
35 views

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 ...
Yogi's user avatar
  • 11
0 votes
0 answers
45 views

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 ...
fantasyTeapot's user avatar
0 votes
0 answers
98 views

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 ...
Kumar Chidepudi's user avatar
3 votes
0 answers
145 views

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 ...
dope's user avatar
  • 345
0 votes
1 answer
187 views

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 ...
Sergio Scaramuzzi's user avatar
0 votes
1 answer
28 views

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 ...
VPN236's user avatar
  • 27
1 vote
1 answer
198 views

I hava been reading about using pollTimeoutSeconds in @SqsListener from Spring Cloud AWS. Look at this configuration: @SqsListener(value = "my-queue", pollTimeoutSeconds = "10", ...
javaTry's user avatar
  • 1,355
0 votes
0 answers
68 views

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 ...
Chetan's user avatar
  • 1
1 vote
1 answer
91 views

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 ...
Mike Rother's user avatar
1 vote
1 answer
90 views

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. ...
thomjah's user avatar
  • 53
0 votes
0 answers
50 views

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-...
Mike Rother's user avatar
0 votes
1 answer
168 views

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 "...
TwilightHaribo's user avatar
0 votes
0 answers
74 views

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. ...
vinoth gct's user avatar
0 votes
1 answer
68 views

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 ...
VPN236's user avatar
  • 27
0 votes
0 answers
225 views

We are facing issue with messages getting stuck in remote queue at random instant. The application uses selectors to consume messages. The messages are consumed again if the client application is ...
farook's user avatar
  • 41
0 votes
0 answers
347 views

I am migrating my java application from Java 8 spring 5.3.x to Java 17, Spring 6.0.0 with JakartaEE 10 feature enabled in open liberty server. I am facing issue with JMS configuration I guess which ...
Soul Stealer's user avatar
-3 votes
1 answer
94 views

I am having problems with my activemq application. After starting it if I send a dummy JMS message to queue it throws below error: org.springframework.web.util.NestedServletException: Handler ...
MUSKAN GURJAR's user avatar
0 votes
0 answers
32 views

Running ActiveMQ Classic 6.0.1 embedded in a Spring Boot app. The app creates queues dynamically and publishes messages to them (via Spring's JmsTemplate); a companion app reads messages from those ...
E-Riz's user avatar
  • 33.6k
0 votes
1 answer
295 views

I'm building a service around Azure Service Bus with Java Language and Spring framework using JMS listeners. I could figure out a way to send a message directly to the DeadLetterQueue, without waiting ...
Blackarrow's user avatar
0 votes
1 answer
80 views

I have a class that implements JmsListenerContainerFactory with the following parameters: factory.setSessionTransacted(true); factory.setConcurrency("1"); factory.setAutoStartup(true); And ...
Effi T's user avatar
  • 23
1 vote
2 answers
542 views

I am seeing the below error even after I specify the subscriber client id in the the properties file. I am using Spring Boot 3.3.4 2024-10-28T15:47:30.173-04:00 WARN 14156 --- [(2)-10.1.81.174] o.s....
user3919727's user avatar
0 votes
0 answers
67 views

Stack Trace: Sorry I have to scrub this for policy reasons. Using Eclipse Maven Build orgspringframework.jms.core.JmsTemplate v6.1.10 On Compile in Eclipse StackTrace INFO: Stopping service [Tomcat] ...
Moojjoo's user avatar
  • 753
1 vote
0 answers
298 views

I am using Spring JmsTransactionManager but sometimes getting TransactionStatus as null. Eventhough I added retry logic its same. How can make sure I always get active Transaction in case of status is ...
VKR's user avatar
  • 339
0 votes
1 answer
105 views

I am using Spring's JmsTemplate, CachingConnectionFactory, and JmsTransactionManager to commit or rollback sending messages to IBM MQ. I have multiple MQ hosts, and on top of it have a load balancer ...
VKR's user avatar
  • 339
0 votes
2 answers
315 views

While creating ConnectionFactory by using TopicConnectionFactory with the latest version of spring boot 3.3.1, facing issue like jakarta package is expected by progress.message.jclient....
Nageshwar's user avatar
-1 votes
1 answer
290 views

I'm currently using Spring Boot version 3.3.0 and Java 21. And I'm facing an issue with setting the SessionAcknowledgeMode to Session.CLIENT_ACKNOWLEDGE. I am trying to manually Acknowledge the ...
Bharad's user avatar
  • 9
0 votes
0 answers
68 views

When I create a producer using Java Spring in my logs I am getting: Failed to Convert property value of type org.apache.activemq.artemis.jms.client.ActiveMQJMSConnectionFactory to required type ...
Thiru ranjith's user avatar
0 votes
0 answers
23 views

I tried this, however after after restarting the gateway, it stops consuming any new messages. SolConnectionFactory connFactory = (SolConnectionFactory) msgListenerContainer....
czolbe's user avatar
  • 611
0 votes
1 answer
85 views

I am using apache camel to configure jms request/reply pattern with spring-jms and ibm-mq. My Camel Route is configured as InOut pattern and I am able to read the message from Reply queue successfully ...
sudheer's user avatar
  • 165
1 vote
0 answers
169 views

I am working on a Springboot (1.5.14.RELEASE) and I upgraded that to Springboot 3.3.2. I have an oracleAQ queue and I was using XmlMessageListenerContainer (Because my payloadtype is "SYS".&...
raVen's user avatar
  • 83
2 votes
0 answers
161 views

Getting following exception when running component test. Environment setup: JDK 17 jakarta.jms:jakarta.jms-api:3.1.0 OS: Windows WSL Docker: activemq:latest running on Rancher Desktop build.gradle ...
ERK's user avatar
  • 406
0 votes
0 answers
57 views

I am using spring-boot-starter-activemq to push messages to ActiveMQ. When I run my code I expect temporary queue is created, and after I got response it should be deleted, but queue is not deleted ...
cihad's user avatar
  • 94
0 votes
1 answer
162 views

Issue We have a legacy application with the following message-driven-channel-adapter configuration <jms:message-driven-channel-adapter id="processRequest" destination=&...
Vijaykumar Arumugam's user avatar
0 votes
2 answers
332 views

I have a IbmMqEndpoint that receives messages. What I want is the message to remain on the original queue, if an error occurs during message processing. The following implementation works flawlessly ...
Ivan's user avatar
  • 53
0 votes
1 answer
111 views

I use Spring Boot with Java 17 and ActiveMQ Classic 6.1.2. When an exception occurs I want to retry with delay 60 seconds. The problem is that every time an exception is thrown in my application, the ...
pppp's user avatar
  • 13
0 votes
1 answer
242 views

Our application is a JAVA back end app running inside a Tomcat. In a high level it reads input from IBM MQ, process it, persists it in the ORACLE DB and writes the output to an MQ. It is a distributed ...
Ravi Shankar's user avatar
1 vote
0 answers
71 views

We are using JMS library for consuming SQS messages. UNORDERED_ACKNOWLEDGEMENT was working fine till concurrency was not into picture. However for concurrency when I injected following bean, all my ...
SWA PSTG's user avatar
1 vote
1 answer
91 views

In my spring application, there are a few listeners. I've noticed that when deploying the application, I see the following message pretty rarely: Rejecting received message because of the listener ...
Bob213's user avatar
  • 11
1 vote
1 answer
116 views

We have a springboot application which contains multiple JMS listeners reading message from different destinations. The application has a common logging framework which provides methods to log ...
amiivas's user avatar
  • 41
1 vote
1 answer
232 views

I am trying to send a JMS message using Spring JmsTemplate like below. jmsTemplate.convertAndSend(topicName, WebsocketMessage("<message content>")) And, I am using ...
Shannu Vaddi's user avatar
-1 votes
1 answer
371 views

Can some one help me please? I have this error in console: jakarta.jms.InvalidDestinationException: Cannot determine response destination: Request message does not contain reply-to destination, and no ...
Hamzix91's user avatar

1
2 3 4 5
40