top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is JSON-RPC and why it is used?

+1 vote
300 views
What is JSON-RPC and why it is used?
posted Jul 9, 2017 by Sisir Jana

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

JSON-RPC is a stateless, light-weight remote procedure call (RPC) protocol. Primarily this specification defines several data structures and the rules around their processing.It uses JSON (RFC 4627) as data format.

JSON-RPC works by sending a request to a server implementing this protocol. The client in that case is typically software intending to call a single method of a remote system. ... All transfer types are single objects, serialized using JSON. A request is a call to a specific method provided by a remote system.

answer Jul 10, 2017 by Manikandan J
...