For instance, the implementation of RPC I use looks like:
POST /v1/:method
Very simple, and still entirely within HTTP. Just not RESTful.
For instance, the implementation of RPC I use looks like:
A JSON object in the request body is the only parameter on the method. The response body is the returned value encoded as JSON.Very simple, and still entirely within HTTP. Just not RESTful.