Java remote method invocation: Difference between revisions

Content deleted Content added
Monkbot (talk | contribs)
fixed citation template issue(s)
Line 1:
 
{{one source|date=February 2012}}
[[ImageFile:RMI-Stubs-Skeletons.svg|thumb|right|400px|A typical implementation model of Java-RMI using [[Class stub|stub]] and [[Class skeleton|skeleton]] objects. Java 2 SDK, Standard Edition, v1.2 removed the need for a skeleton.]]
 
The '''Java Remote Method Invocation''' ('''Java RMI''') is a [[Java (programming language)|Java]] [[Application programming interface|API]] that performs the object-oriented equivalent of [[remote procedure call]]s (RPC), with support for direct transfer of [[Serialization#Java|serialized]] Java classes and [[Distributed Garbage Collection|distributed garbage collection]].
Line 107:
* [http://docs.oracle.com/javase/7/docs/technotes/guides/rmi/index.html The RMI page in the JDK docs]
* {{Javadoc:SE|package=java.rmi|java/rmi}} (Sun's Java API Reference for the RMI package)
* {{cite paper | authorauthor1= Wollrath, Ann | coauthorsauthor2= Riggs, Roger; | author3 = Waldo, Jim
| title= A Distributed Object Model for the Java System | version= | pages= | publisher= | doi=
| url=http://pdos.csail.mit.edu/6.824/papers/waldo-rmi.pdf | format= PDF | accessdate= 2009-02-11}}
| accessdate= 2009-02-11}}
* [http://docs.oracle.com/cd/E12840_01/wls/docs103/rmi/rmi_intro.html Programming WebLogic RMI] - an introduction to RMI in Oracle Weblogic.
* [http://notes.corewebprogramming.com/student/RMI.pdf General Remote Method Invocation]