Skip to content

Tag: jms

Trying to send a message to a queue on weblogic

I have a spring boot application that is deployed on a WebLogic server, on that server there is a JmsModule defined that I need to use to send messages. I have the following as my sending class: The queue has a JNDI name and is retrieved via spring properties, it’s defined as: When starting the applicat…

JMS, consume a message from a topic only once

I have a requirement to establish a point to point communication with publisher and consumer in my application. What I’m given is a topic. So I should make sure the message in the topic will be consumed only once and only one instance should consume it. (There are multiple instances of the consumer.) I …

JMS Topic – Weblogic to Wildfly / JBoss migration

I have one of my Topics in WebLogic with overrides properties “Time-To Deliver Override” and “Delivery Mode Override” I’m working on a migration to WildFly server. I’ve declared the Topics in the standalone.xml under the ActiveMQ subsystem tag as following But, I have no id…

Gatling JMS scenario does not terminate

I am trying to loadtest a simple request/reply scenario over a rabbitmq broker. This scenario sends a simple text message to the defined queue and then wait on the defined replyQueue for an answer. On the other side of the request queue is simple message listener that reads the JMSReplyTo field and sends a me…