About 50 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, and …

  2. java - How does JMS Receive work internally? - Stack Overflow

    Beneath JMS API is a JMS compliant messaging provider, for example WebSphere MQ provider. JMS supports transport of a payload over any messaging protocol to destinations viz. Queue and Topic. …

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

    May 27, 2014 · The standard JMS API is merely a set of interfaces; JMS providers (such as WebSphere MQ) provide their own implementations for these interfaces. The only thing that you can say for sure …

  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: com.ibm.mq.jar, …

  5. 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 ?

  6. 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 and receivers …

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

  8. jms - While using @JmsListener, using "concurrency" getting active ...

    Apr 7, 2025 · 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 …

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

    Jun 1, 2023 · Jms not working after update to spring boot 3 (and ConnectionFactory from javax to jakarta) Ask Question Asked 2 years, 9 months ago Modified 1 year, 9 months ago

  10. java - JMS vs Webservices - Stack Overflow

    May 12, 2009 · What are the big advantages from JMS over Webservices or vice versa? (Are webservices bloated? Is JMS overall better for providing interfaces?)