What is the difference between Java RMI and JMS?
Posted
by Sanoj
on Stack Overflow
See other posts from Stack Overflow
or by Sanoj
Published on 2010-04-05T00:39:26Z
Indexed on
2010/04/05
0:43 UTC
Read the original article
Hit count: 391
When designing an distributed application in Java there seams to be a few technologies that address the same kind of problem. I have briefly read about Java Remote Method Invocation and Java Message Service, but it is hard to really see the difference. Java RMI seams to be more tightly coupled than JMS because JMS use asynchronous communication, but otherwise I don't see any big differences.
- What is the difference between them?
- Is one of them newer than the other one?
- Which one is more common/popular in enterprises?
- What advantages do they have over eachother?
- When is one preferred over the other?
- Do they differ much in how difficult they are to implement?
I also think that Web Services and CORBA address the same problem.
© Stack Overflow or respective owner