Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bidirectional JSON-RPC over TCP socket Java implementation

Does anyone know if some Java implementation of the JSON-RPC protocol exists with bidirectional support (there is no Client/Server, both entities can send and receive the same messages).

I know it exists in Python: bjsonrpc

Thanks!

like image 743
nbarraille Avatar asked Jun 29 '11 09:06

nbarraille


1 Answers

It looks like it didn't exist, so I created one, based on JsonRpcBase: JJsonRpc

It doesn't handle sockets connections very well right now, but it's working decently for me.

Hope it helps.

like image 93
nbarraille Avatar answered Nov 04 '22 01:11

nbarraille