About 8,310,000 results
Open links in new tab
  1. What is Java Message Service (JMS) for? - Stack Overflow

    18 What ist Java Message Service (JMS) for JMS is a messaging standard that allows Java EE applications to create, send, receive, and consume messages in a loosely coupled, reliable, …

  2. java - Jms not working after update to spring boot 3 (and ...

    Jun 1, 2023 · After update from SpringBoot v.2.5.5 to v3.1.0 it was necessary to update also ConnectionFactory from javax.jms.ConnectionFactory to jakarta.jms.ConnectionFactory. I …

  3. java - Real world use of JMS/message queues? - Stack Overflow

    I was just reading abit about JMS and Apache ActiveMQ. And was wondering what real world use have people here used JMS or similar message queue technologies for ?

  4. jms - JMSCMQ0001: IBM MQ call failed with compcode '2' …

    Nov 11, 2024 · Some legacy code is running on a mainframe that uses JMS classes to connect to MQ. The older version uses Java 8, Java EE with Spring 5 and IBM-provided JARs: …

  5. java - Mock or simulate Message Queue (JMS) - Stack Overflow

    JMS provider: A messaging system that implements the JMS specification. JMS clients: Java applications that send and receive messages. Messages: Objects that are used to …

  6. Which protocol does JMS use to send and receive messages?

    May 27, 2014 · When your JMS client has to talk to a JMS server that is located on another machine on the network (a typical case), the protocol used between the client and the server …

  7. How to use Java JMS with MQseries - Stack Overflow

    JMS is a specification and each implementation must comply with the API and the semantics, but is free to do whatever they want at a low level. It is always necessary to use the …

  8. JMS Topic vs Queues - Stack Overflow

    Apr 7, 2011 · A JMS queue is a 1-to-1 destination of messages. The message is received by only one of the consuming receivers (please note: consistently using subscribers for 'topic client's …

  9. How to set JMSMessageID and JMSCorrelationID properly?

    Apr 26, 2014 · I made a java app that uses JMS to send messages to an MQ Queue. I set the message id and correlation id with the setJMSMessageId() and setJMSCorrelationId(). The …

  10. Migrating to Spring Boot 3 with ActiveMQ Classic

    Dec 2, 2022 · 5 To continue to use ActiveMQ 5.x with Spring 3 and Jakarta EE 9, two updates are needed on the ActiveMQ 5.x side-- JMS 2.0 support, and then support for javax.jms -> …