Skip to main content

Questions tagged [jms]

The Java Message Service (JMS) API is a Java Message Oriented Middleware (MOM) API for sending messages between two or more clients. JMS is a part of the Java Platform, Enterprise Edition, and is defined by a specification developed under the Java Community Process.

1 vote
1 answer
557 views

Spring Boot Azure Service Bus Listener

I would greatly appreciate your feedback and review of our Spring Boot Azure Service Bus listener implementation. Your insights and suggestions will help us ensure its efficiency and reliability. ...
Siyamcela Nxuseka's user avatar
2 votes
0 answers
219 views

Functional way to handle JMSConnection open and close with Clojure

I wrote this code to automatically open and close my JMSConnection's in Clojure: ...
MMacphail's user avatar
  • 121
3 votes
0 answers
3k views

Checking number of messages in jms queue code

I need to check number of messages in a jms queue for that i am using queuebrowser. Actually i have 2 queues. I check if there are more then 10 messages in second queue then the first queue should not ...
kirti's user avatar
  • 163
6 votes
1 answer
6k views

JMS consumer for message retrieval and listening

I created a standalone Java application that acts as a consumer that retrieves/listens for messages inside an ActiveMQ queue. Planning to run two instances of these on different machines for high ...
mpmp's user avatar
  • 191
3 votes
1 answer
2k views

Implementing a JMS consumer

I need a standalone client that consumes messages from the queue every time a message exists. I already have set-up an ActiveMQ queue named hello.world. ...
mpmp's user avatar
  • 191
5 votes
1 answer
288 views

JMS configuration -- client exclusive messages

I am SURE this is somehow easy but reading the docs isn't bringing it to light. The problem: I am trying to setup a JMS message listener and what I need is for the first client to have exclusive ...
Christian Bongiorno's user avatar
3 votes
1 answer
152 views

Calculator implemented in a MessageDrivenBean

Is it right? any improvements? different approach...? ...
user35892's user avatar
4 votes
0 answers
2k views

Configuring a JMS Component in akka-camel

I'm trying to write a JMS Consumer using Akka-Camel. For now, I'm using FFMQ as a JMS server. I want to listen on the JMS queue myqueue. Creating the JMS ...
Arnost Valicek's user avatar