Remote Procedure Call

Remote Procedure Call

(networking, programming)
(RPC) A protocol which allows a program running on one host to cause code to be executed on another host without the programmer needing to explicitly code for this. RPC is an easy and popular paradigm for implementing the client-server model of distributed computing. An RPC is initiated by the caller (client) sending request message to a remote system (the server) to execute a certain procedure using arguments supplied. A result message is returned to the caller. There are many variations and subtleties in various implementations, resulting in a variety of different (incompatible) RPC protocols.

Sun RPC is defined in RFC 1057 and ONC RPC in RFC 1831.
This article is provided by FOLDOC - Free Online Dictionary of Computing (foldoc.org)

RPC

(Remote Procedure Call) A programming interface that allows one program to use the services of another program in a remote machine. The calling program sends a message and data to the remote program, which is executed, and results are passed back to the calling program.

There Are Many Interfaces
Sun developed the RPC concept as part of its Open Network Computing (ONC) architecture, and a similar type of RPC was used in The Open Group's DCE architecture, which was the model for Microsoft's DCOM. CORBA also provides this capability along with a comprehensive messaging environment designed to support multiple programming languages and platforms. Web services and service oriented architectures (SOAs) are another form of RPC. See remoting, Web services, SOA, CORBA and DCOM.


RPCs vs. CORBA
The concept may be the same (one program calls another to execute some service), but RPCs function more like a program calling a function in the same machine, only done remotely. RPCs also tend to be language and platform specific. CORBA provides a complete messaging environment that Object Request Broker (ORB) software manages at both ends of the communication.



RPCs vs. CORBA
The concept may be the same (one program calls another to execute some service), but RPCs function more like a program calling a function in the same machine, only done remotely. RPCs also tend to be language and platform specific. CORBA provides a complete messaging environment that Object Request Broker (ORB) software manages at both ends of the communication.
Copyright © 1981-2025 by The Computer Language Company Inc. All Rights reserved. THIS DEFINITION IS FOR PERSONAL USE ONLY. All other reproduction is strictly prohibited without permission from the publisher.
Mentioned in
Copyright © 2003-2025 Farlex, Inc Disclaimer
All content on this website, including dictionary, thesaurus, literature, geography, and other reference data is for informational purposes only. This information should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional.