Is there any difference between JRMP (Java Remote Method Protocol) and RMI?
Location: http://www.jguru.com/faq/view.jsp?EID=502975 Created: Sep 24, 2001 Author: Alessandro A. Garbagnati (http://www.jguru.com/guru/viewbio.jsp?EID=32727) Question originally posed by Luigi Viggiano PREMIUM (http://www.jguru.com/guru/viewbio.jsp?EID=101985 I hope this will clarify the concepts and it will answer your question: Java RMI is just a set of APIs and a model for remote objects for building distributed applications. The original version of RMI uses a combination of Java serialization and the Java Remote Method Protocol (JRMP) to turn local method invocations into remote method invocations. JRMP is one transport protocol that is used by RMI to transfer data across the network. Another example of a transport protocol used by RMI is IIOP (Internet Inter-ORB Protocol).
Related Questions
- Why does my application sometimes receive a NativeSeqFile error when using JRIO and the Remote Method Invocation (RMI) - Java Remote Method Protocol (JRMP) to access MVS datasets?
- Whats the difference between the Remote Viewing protocol that you teach, and all of the others I hear about like TRV, CRV, ERV, etc?
- Where can I learn (more) about Java RMI (Remote Method Invocation)?