Learner
Learner

Reputation: 21405

What is messaging domain in JMS

I am learning JMS from documentation: http://docs.oracle.com/javaee/6/tutorial/doc/bncdr.html and came across this statement:

The JMS API minimizes the set of concepts a programmer must learn in order to use messaging products but provides enough features to support sophisticated messaging applications. It also strives to maximize the portability of JMS applications across JMS providers in the same messaging domain.

I don't understand this. What are JMS providers and what is messaging domain here?

Upvotes: 0

Views: 387

Answers (2)

mikea
mikea

Reputation: 6667

JMS providers are 3rd parties that provide implementations of the JMS specification such as IBMMQ & RabbitMQ.

The messaging domain in this case will be the processing of messages as determined by the JMS specification.

Upvotes: 2

Malatesh
Malatesh

Reputation: 1954

I know it is old but people who come here searching for answer it helps, here good article explained nicely. To answer to the question "domain" is very generic in this context. to say in the world of messaging

Upvotes: 1

Related Questions