JsonRpc-Cpp Code
Brought to you by:
s-vincent
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | JsonRpc-Cpp =========== Introduction ------------ JsonRpc-Cpp library is a C++ implementation of JSON-RPC 2.0 protocol (http://www.jsonrpc.org/specification). It uses JsonCpp library (http://jsoncpp.sourceforge.net/) to encode/decode JSON messages. Compilation and installation ---------------------------- The preferred way to build is via autotools (./autogen.sh ; ./configure ; make ; make install). You can also build and install via scons (see INSTALL file). Future work ------------ - Multithreaded UDP/TCP servers; - HTTP / CGI encapsulation; - Implement a ClientTransactionManager for JSON-RPC client. This object would manage retransmissions, check if server response correspond to a precedent query, ... Contact ------- Sebastien Vincent <sebastien.vincent@cppextrem.com> |