Non-GPL JSON-RPC Library for C ++

What non-GPL libraries are available for writing JSON-RPC servers and clients in native C ++?

According to http://json-rpc.org/wiki/implementations , there seems to be only one JSON-RPC implementation for C ++, namely JsonRpc-Cpp , but is only available under the GPL. Unfortunately, we cannot use the GPL code in our software.

JSON RPC C Library from big-llc.com could be an alternative. They call this the “free, lightweight C implementation library to simplify JSON-RPC request processing,” but they don’t mention licensing.

Who knows the other options?

+7
c ++ json-rpc
source share
2 answers

JsonRpc-Cpp is available as LGPLv3 with version 3.0 version 2011-05-06.

+6
source share

I honestly don't know anything about this, but stumbled upon it, looking for other serialization tools:

JSON-RPC and XML-RPC in C / C ++

+1
source share

All Articles