liushidefeng / protobuf-rpc-pro

Automatically exported from code.google.com/p/protobuf-rpc-pro
0 stars 0 forks source link

Python rpc support #36

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I am trying to run Java rpc server while python rpc client but to make it 
working I need to look at your rpc implementation. It will be very beneficial 
to people having most powerful protobuf rpc java implemention (No doubt in 
this) and python implemention

Original issue reported on code.google.com by rajnee...@hike.in on 22 Feb 2015 at 6:37

GoogleCodeExporter commented 9 years ago
Currently this is a java only implementation of a RPC library, which has a 
"wire" payload defined as protobuf API and using Netty (over sockets) as the 
transport layer. What netty is doing is wrapping the wire payload data in with 
an integer "length" header and sending over sockets.

Issue #18 is a discussion on other languages supported - to-date i don't know 
of any non java clients actually implemented. It would be feasible to write a 
python client which can communicate with a java server backend. I personaly 
will not write a python client - i'm working on another project http://tdmx.org 
and just support this one if there are bugs or small improvement requests.

Original comment by pjklauser@gmail.com on 22 Feb 2015 at 7:49