7

I have json rpc 2.0 server written in php. Currently I'm looking for a library that allows auto generation json rpc requests instead of using manual serialization.

I found a bunch of different libraries and really don't know which is more convenient. Did anybody successfully use one?

overflowed
  • 185
  • 1
  • 1
  • 4

2 Answers2

6

The best library json I've ever found is JSON-RPC 2.0

For making requests you will need base part of library. But if you want automatically handle server resonces you can take a look at client library. There are pretty much easy to understand tutorials. Hope it will help.

Allan Veloso
  • 5,823
  • 1
  • 38
  • 36
Dmitry Guselnikov
  • 1,048
  • 1
  • 8
  • 21
4

android-json-rpc is a pretty simple library. Here is the documentation.

Allan Veloso
  • 5,823
  • 1
  • 38
  • 36