by Perryman on February 7th, 2007

Perryman

Question

Help answer this question below.

What is RPC, Remote Procedure Call?

  • Like
  • Report

Answers. Showing one answer.

  • by Im Alec has abandoned this account on February 7th, 2007

    Im Alec has abandoned this account

    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".

    Comments
    • Like
    • Report

    No comments. Post one | Permalink

Want to attach an image to your answer? Click here.

Did this answer your question? If not, then ask a new question or create a poll.

You're reading What is RPC, Remote Procedure Call?

Follow us on Facebook!

Related Ads