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

    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. How to use Java JMS with MQseries - Stack Overflow

    I am trying to develop a JMS standalone application to read and write to a Queue on MQSeries. My boss asked me to use pure java JMS (not ibm.mq lib) to do that. Here is the information …

  3. 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 …

  4. java - Mule 4.9 JMS appender error: Modules javax.jms.api and …

    Jun 5, 2025 · Mule 4.9 JMS appender error: Modules javax.jms.api and jakarta.jms.api export package javax.jms to module org.eclipse.sisu.inject Asked 6 months ago Modified 6 months …

  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. java - How does JMS Receive work internally? - Stack Overflow

    These are basics of JMS. How does receive work? JMS specification provides two important classes:- MessageConsumer and MessageListener. MessageConsumer class allows a JMS …

  7. java - JMS vs Webservices - Stack Overflow

    May 12, 2009 · JMS requires that you have a JMS provider, a Java class that implements the MessageListener interface for processing messages, and a client that knows how to connect …

  8. java - JMS and AMQP - RabbitMQ - Stack Overflow

    Mar 1, 2013 · Java clients need to use AMQP protocol client libraries to connect / use RabbitMQ Where does JMS API come into play here? JMS API should use AMQP client libraries to …

  9. Posting a message in JMS queue using JAVA - Stack Overflow

    I am new to JMS, after a long re search i googled out a code to connect to JMS and post a msg. The problem is i need to post the message in a remote queue, But i am not sure how to …

  10. java - JMS AUTO_ACKNOWLEDGE when is it acknowledged?

    Jul 26, 2012 · If I am using AUTO_ACKNOWLEDGE, and I have a consumer client written in Java, when is the message acknowledged? I am using a MessageListener which contains an …