1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/jsonrpc
Jonathas-Conceicao 024c5e7597 jsonrpc: Fix AppState extraction
Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
2020-03-27 21:57:31 -03:00
..
src jsonrpc: Fix AppState extraction 2020-03-27 21:57:31 -03:00
tests Add jsonrpc example 2019-04-15 10:05:22 +08:00
Cargo.toml Remove serde_derive https://github.com/serde-rs/serde/issues/1441#issuecomment-445481084 2020-01-12 14:04:02 +01:00
README.md Update README.md 2019-04-15 14:16:38 +08:00

A simple demo for building a JSONRPC over HTTP server in actix-web.

Server

$ cargo run
# Starting server on 127.0.0.1:8080

Client

curl

$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc": "2.0", "method": "ping", "params": [], "id": 1}' http://127.0.0.1:8080
# {"jsonrpc":"2.0","result":"pong","error":null,"id":1}

python

$ python tests\test_client.py
# {'jsonrpc': '2.0', 'result': 'pong', 'error': None, 'id': 1}

Methods

  • ping: Pong immeditely
  • wait: Wait n seconds, and then pong
  • get: Get global count
  • inc: Increment global count

See tests\test_client.py to get more information.