-1
votes
1answer
138 views

rpc server C++ Linux server and Windows client [duplicate]

Is there a nice implementation of an RPC server that runs on Linux and has a client for Windows. It should use protcolbuf for messages. All code is C++. The only examples I can find all compile well ...
3
votes
1answer
141 views

protobuf RPC structure (embedded ARM)

I need to use protobuf in embeded arm system. Need the support of pure C. The project will use a client-server architecture (C server with the java, Python clients). The project requires to consider ...
0
votes
0answers
124 views

Calling protobuf rpc method of c++ from c#

I have a RPC server in C++ using protobuf having a remote method. Protobuf created a .pb.cc file in which it has implementation of the RPCService. It has the difintion of stub also. I created a client ...
0
votes
0answers
51 views

Client Server connection persist in RPC

I have an application in C++ where client calls the remote procedure at the server. I have a callback function which is called when a response arrives from the server when remote procedure is called. ...
0
votes
1answer
84 views

How to encode method parameters using HadoopRpcRequestProto request field in Hadoop

The Hadoop RPC engine uses Protocol Buffer to encode/decodes the bytes from the wire. I am trying to invoke a method on a Hadoop Server using the HadoopRpcRequestProto HadoopRpcRequestProto ...
1
vote
0answers
53 views

Dynamic Python RPC [closed]

TLDR: Dynamic RPC mechanisms in Python? I am working on a Python project using SQLAlchemy and Alembic that is then wrapped in Protocol Buffers for CLI interaction. The tool's selling point (at least ...
0
votes
0answers
33 views

How to assign a cmdid for protobuf service method?

To implement a rpc codegen tool with protobuf, it need to assign a cmdid for every method. Something like the following example. But google::protobuf::compiler::Importer don't support this syntax. ...
1
vote
2answers
474 views

Bidirectional async Java RPC

protobuf-rpc-pro provides a bidirectional async RPC implementation for Java based on Protocol Buffers. Are there other like this (Protocol Buffers not necessary)? This question is similar, but ...
0
votes
1answer
309 views

The best protocol for communication, data transfer for iOS, Android client and server [closed]

I explored many days, the available communications are: http, simple socket, RPC. The data transfer protocol are json, protocol buffer. My server language is Ruby. i want use RPC + protocol buffer, i ...
6
votes
4answers
686 views

IDL for JSON REST/RPC interface

We are designing a fairly complex REST API, in which most of the I/O are JSON encoded objects with a specific structure. One challenge we have found is to document the API in such a way that makes it ...
1
vote
0answers
188 views

What's the best RPC package to write a C++ client/server for a peer-to-peer system?

I have a program that performs compute-heavy local processing. The compute packages have 16MiB input buffers and generate between 10KB and 16MiB of output. This all happens in a multi-threaded ...
3
votes
2answers
3k views

What are the alternatives to ZeroMQ for moving protocol buffer payloads around?

At the moment I have a solution that uses ZeroMQ to exchange protocol buffer payloads. The protocol buffer method of serialization is bound to stay as it is, but I can replace ZMQ with a more ...
1
vote
1answer
119 views

Can not Communicate with UI Thread

I made a simple RPC mechanism apps for android and I faced a problem that I can not go back to the UI Thread from RPC class. Basically I have 3 classes(ServerActivity,ServerView and ...
1
vote
1answer
412 views

Protobuf-net RPC with byte[]?

I've been using protobuf-net to communicate object state data in standard protobuf-net fashion. I've been serializing the object, getting a byte[] array out, encrypting the array and sending it out ...
1
vote
1answer
193 views

Annotating a push rpc call in protocol buffers

How do I define a push only rpc call in the protocol buffers language ? The syntax shown in the service definition subsection only shows a general request -> returns pair. One solution I can think of ...
5
votes
1answer
387 views

Calling Java functions from R using RProtoBuf (Protocol Buffers)

It is not entirely obvious how to go about using RProtoBuf for communicating between R and other languages (Java, in my case). The RprotoBuf Developers developed something that is still here - ...
6
votes
3answers
2k views

Where can I find a RPC which implemented with: boost + protobuf

Are there any RPC framework implemented with: boost + protobuf? And it has a protobuf plugin can be used to generate RPC code for the framework. Or there are some open source implementations I can ...
2
votes
1answer
1k views

protobuf-net and rpc over tcp

I'm looking for a rpc over tcp implementation that uses protobuf-net (or any other .net implementation of protobuf). Any suggestions?
0
votes
1answer
594 views

RPC for java/python with rest support, HTML monitoring and goodies

Here's my set of requirements: I'm looking for an RPC framework such as thrift, avro, protobuf (when adding services to it) which supports: Easy and intuitive IDL. No serial numbers, no manual ...
3
votes
1answer
944 views

Using an RPC like Protocol Buffers as a backend to Django, instead of MySQL or SQLite

The clever folks behind the app-engine-patch project have essentially enabled all the fun stuff of Django, including the admin, but without using Django's ORM. From their website: The most ...
4
votes
1answer
5k views

Protocol Buffers Java RPC Stack

According to this Wikipedia entry: "Protocol Buffers is very similar to Facebook’s Thrift protocol, except it does not include a concrete RPC stack to use for defined services. Since Protocol Buffers ...