- NEW!
Help answer this question below.
From Wikipedia, the free encyclopedia
Jump to: navigation, search
Remote procedure call (RPC) is an Inter-process communication technology that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction. That is, the programmer would write essentially the same code whether the subroutine is local to the executing program, or remote. When the software in question is written using object-oriented principles, RPC may be referred to as remote invocation or remote method invocation.
Note that there are many different technologies commonly used to accomplish this which are often incompatible.
It is fairly self explanatory - a procedure call made on software running in a remote machine.
In the calling machine there is a stub, which has the same parameters as the remote procedure. The stub simply packages up all the parameters and sends them over the network to the remote machine. A Server in the remote machine accepts the message, unpacks the parameters, and calls the desired procedure. It then packs up the return result, if any, and sends it over the network to the stub, which returns it to the caller. The net effect is for the caller to achieve "action at a distance".
Procedure call is a well understood control mechanism used in sequential programing languages. Remote Procedure Call extends the procedure call semantics to call procedures that actually lies on a remote machine. When an RPC is invoke, the caller is suspended,a message containing argument is constructed & passed to the remote machine.The procedure is executed on the remote machine.
how to convert microsoft word document to jpeg
by misblue on November 10th, 2011
| 1 person likes this
Can you text without using your thumbs?
by HoboJoe on November 22nd, 2011
| 1 person likes this
What is the maximum length of a cable on a 100BaseT network? What does the 100 in the name 100BaseT indicate?
by MargoShick on November 23rd, 2011
| 1 person likes this
is any one here a real network administrator?
by THENETWORKA on November 29th, 2011
| 1 person likes this
Can someone tell me the steps needed to hook up a VPN connection so my ipod touch can use my computers internet if my ipod touch is on wifi?
by jeffreylb94 on October 29th, 2011
| 1 person likes this
You're reading What is RPC, Remote Procedure Call?
Comments