Representational State Transfer (REST)

Representational State Transfer (REST) is a style and architecture for Web services that is simpler and often faster than earlier designs such as SOAP. REST operations are stateless: no client context is stored on the server between requests.

Your PRPC system can act as a REST server, responding to requests received from an external client. Your application can also initiate REST-style requests, as a client.