What are the various parts in JMS API Architecture?

What are the various parts in JMS API Architecture?

Ninja Asked on 19th September 2018 in JMS.
Add Comment
1 Answer(s)
Best answer

A JMS application is composed of the following parts:

  • A JMS provider is a messaging system that implements the JMS interfaces and provides administrative and control features. An implementation of the Java EE platform includes a JMS provider.
  • JMS clients are the programs or components, written in the Java programming language, that produce and consume messages. Any Java EE application component can act as a JMS client.
  • Messages are the objects that communicate information between JMS clients.
  • Administered objects are preconfigured JMS objects created by an administrator for the use of clients. The two kinds of JMS administered objects are destinations and connection factories, described in JMS Administered Objects.
Ninja Answered on 19th September 2018.
Add Comment