Skip to content

Instantly share code, notes, and snippets.

JMS

What is JMS?

JMS means Java Messaging Service. It is a standard for inter client communication. It allows the J2EE application component to create, send, read and receive the messages.

What type of messaging is provided by JMS?

JMS provides both type of messaging,

  1. Synchronous: Synchronous messaging involves a client that waits for the server to respond to a message.
  2. Asynchronous: Asynchronous messaging involves a client that does not wait for a message from the server. An event is used to trigger a message from a server.
@sumitnsit
sumitnsit / Hello Gist
Last active August 29, 2015 14:27
Hello World Gist
# hello world of gist
@sumitnsit
sumitnsit / example.js
Created September 19, 2013 07:33
Welcome to your first Gist! Gists are simple code reminders. Whenever you come across a piece of code you think might be useful later on, save it as a Gist. With GistBox, you can also tag the Gist with a label. This is especially useful for keeping them organized by language, project or purpose. For more info about GistBox, visit: http://www.gi…
// log an object to the browser console
console.log({ text: "foobar" });