What is JSON-RPC? List some Features of JSON-RPC-Java

devquora
devquora

Posted On: Feb 22, 2018

 

    1 Answer Written

  •  devquora
    Answered by Anil Saini

    JSON-RPC is a call protocol that uses JSON for encoding messages. It is a simple and easy protocol just like XML-RPC. It supports multiple calling and notifications. In short, JSON-RPC is the method of sending a request to someone and receiving the response from another side. It is a single way by which different components can communicate easily with each other. If the authentication for your HTTP library is required then you can use the specific JSON-RPC protocol. There are a total of three versions of this JSON-RPC version 2.0, version 1.1 (working draft) and version 1.0.

Related Questions

Please Login or Register to leave a response.

Related Questions

JSON Interview Questions

What is JSON? For what is used for?

JSON (JavaScript Object Notation) is a data storage and communication format based on key-value pair of JavaScript obje..

JSON Interview Questions

How to convert Javascript objects into JSON?

JSON.stringify(value); is used to convert Javascript objects into JSON.Example Usage: var obj={"website":"Onlineint..

JSON Interview Questions

List types Natively supported by JSON?

JSON supports Objects, Arrays, Primitives (strings, numbers, boolean values (true/false), null) data types...