The server determine the data types in remote procedure call are:
- A client invokes a client stub procedures, parameters in the usual way. stub resides within the client's own address space.
- The a dient stub marshalls (pack) the parameters into message. Marshalting includes converting the representation of the format, message. and copying parameters into a standard each parameter into the message.
- The client stub the pouses message to the transport layer, which sends it to the remote server machine.
- On the to a server, the transport layer passes the message routine using server stub, which demarshalls (unpack) the parameters and call the desired the regular procedure call machine machanism.
- when the the server procedure completes, it returns to stub.
What do you mean by remote procedure call?
A remote procedure call occurs when a computer programme causes a procedure to execute in a separate address space, which itself is coded as if it were a normal procedure call, but the details for the distant interaction are not explicitly coded by the programmer.
To learn more about remote procedure call
https://brainly.com/question/25055530
#SPJ4