Describe architecture model of distributed system design
Answers
Answered by
0
The client-server model is usually based on a simple request/reply protocol, implemented with send/receive primitives or using remote procedure calls (RPC) or remote method invocation (RMI):
The client sends a request (invocation) message to the server asking for some service;
The server does the work and returns a result (e.g. the data requested) or an error code if the work could not be performed.
The client sends a request (invocation) message to the server asking for some service;
The server does the work and returns a result (e.g. the data requested) or an error code if the work could not be performed.
Similar questions