• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

LovSan Worm

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.
The term you selected is being presented by searchWebServices.com, a TechTarget site for Web Services professionals.


Remote Procedure Call (RPC) is a protocol that one program can use to request a service from a program located in another computer in a network without having to understand network details. (A procedure call is also sometimes known as a function call or a subroutine call.) RPC uses the client/server model. The requesting program is a client and the service-providing program is the server. Like a regular or local procedure call, an RPC is a synchronous operation requiring the requesting program to be suspended until the results of the remote procedure are returned. However, the use of lightweight processes or threads that share the same address space allows multiple RPCs to be performed concurrently.
 
It a protocol (set of instructions) that allows a computer (remote) to request something from another computer (host) in a network without being setup and knowing the exact host's configuration.

Thats about as much I can break it down. lol

My head is full of computer jargon
 
Back