json-rpc-client: JSON-RPC 2.0 on the client side.

[ json, library, mit, network ] [ Propose Tags ]

Functions for creating a JSON-RPC 2.0 client. See http://www.jsonrpc.org/specification. This library supports batch requests and notifications, as well as single method calls. It also provides a function for creating corresponding server-side methods with the package json-rpc-server. This library does not handle transport, so a function for communicating with the server must be provided. The demo folder contains an example client and server that can be compiled with the demo flag. See Network.JsonRpc.Client for details.


[Skip to Readme]

Flags

Manual Flags

NameDescriptionDefault
demo

Builds the JSON-RPC demo client and server.

Disabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.2.0, 0.1.3.0, 0.1.4.0, 0.2.0.0, 0.2.1.0, 0.2.2.0, 0.2.3.0, 0.2.4.0, 0.2.5.0
Dependencies aeson (>=0.7 && <0.9), base (>=4.3.1 && <4.9), bytestring (>=0.9.1 && <0.11), json-rpc-server (>=0.1.4 && <0.2), mtl (>=2.1.1 && <2.3), text (>=0.11.2 && <1.3), unordered-containers (>=0.2.3 && <0.3), vector (>=0.10 && <0.11), vector-algorithms (>=0.5.4 && <0.8) [details]
License MIT
Author Kristen Kozak
Maintainer Kristen Kozak <grayjay@wordroute.com>
Category Network, JSON
Source repo head: git clone https://github.com/grayjay/json-rpc-client
Uploaded by grayjay at 2015-05-17T05:33:32Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables demo-client, demo-server
Downloads 7170 total (24 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-05-20 [all 1 reports]

Readme for json-rpc-client-0.1.3.0

[back to package description]

json-rpc-client

Build Status

Functions for creating a JSON-RPC 2.0 client. See http://www.jsonrpc.org/specification. This library supports batch requests and notifications, as well as single method calls. It also provides a function for creating corresponding server-side methods with the package [json-rpc-server] (http://hackage.haskell.org/package/json-rpc-server). This library does not handle transport, so a function for communicating with the server must be provided. The documentation is on Hackage: http://hackage.haskell.org/package/json-rpc-client.