a remote procedure call (RPC) is a form of inter-process communication (IPC)
Questions tagged [rpc]
2527 questions
10
votes
7 answers
GWT with JPA
I'm trying to build database application using GWT 1.5.3. I use JPA annotations with my objects. It seems in hosted mode GWT's RPC works fine. But when I try to compile my app using GWT-compiler I get errors like: "The import javax.persistence…

synergetic
- 7,756
- 8
- 65
- 106
10
votes
4 answers
How can I find out the number of times an RSK transaction has been confirmed on the RSK blockchain?
It would be good to know how many times a transaction has been confirmed on the RSK blockchain so that when one user sends RIF to another wallet or to an exchange wallet for example we can see how many confirmations have occurred

eddyshanghai
- 111
- 3
10
votes
5 answers
Wallet file not specified (must request wallet RPC through /wallet/ uri-path). error when backuping wallet using BitcoinLib in C#
I'm currently working on a little program for backing up your Bitcoin Core wallet. I am using BitcoinLib v1.15.0 in C#.
IBitcoinService bitcoinService = new BitcoinService("http://127.0.0.1:8332", "test", "test", "",…

Mr Incognito
- 103
- 1
- 6
10
votes
2 answers
GWT client and server implementations of the same class
Is there any way to have the same class implemented differently on the client vs the server?
To avoid the "Why do you want to do that?" question.. I will elaborate
I am converting a very large Java client/server application. Currently it uses a…

helipilot50
- 101
- 1
- 3
10
votes
2 answers
What are the good alternatives for communication between local C++ and Java programs?
By "local" I mean both run in the same subnet, in most cases the same host/VM, therefore some standard cross-network cross-platform RPC mechanisms like SOAP, XML-RPC, CORBA, etc. seem unnecessary.
The payload is mainly numerical (mostly tabulated)…

std_colon-colon_ex
- 103
- 7
10
votes
1 answer
GWT Serialization - class has no instantiable subtypes
I'm trying to serialize this object (OperatorDTO) so I can use RPC to send it from my server side to client. I've read other posts on this topic but I don't see why I'm doing anything diferent than other people.
When I'm running my project this…

SteamedCow
- 197
- 1
- 13
10
votes
3 answers
RPC frameworks available?
I am looking to use a RPC framework for internal use. The framework has to be cross language. I am exploring Apache Thrift right now. Google protocol Buffers does not provide RPC capabilities exactly. What are the choices I have got apart from…

sheki
- 8,991
- 13
- 50
- 69
10
votes
1 answer
Protobuf RPC callbacks
Is there any way to do the invoke call from server to the client with Protobuf RPC(while custom call from client to the server, not directly)?
I'm meaning, for example, describe service method in *.proto file with callback param?
Im using gRPC…

Hardwired
- 804
- 1
- 8
- 19
10
votes
1 answer
Java RMI + SSL + Compression = IMPOSSIBLE!
I've setup RMI + SSL. This works great. But it doesn't seem possible to slip compression in between RMI and SSL. So that the RMI requests are compressed before they're sent over SSL.
I've seen some posts online suggest using…

DragonFax
- 4,625
- 2
- 32
- 35
10
votes
2 answers
Google protobuf and large binary blobs
I'm building a software to remotely control radio hardware which is attached to another PC.
I plan to use ZeroMQ for the transport and an RPC-like request-reply with different messages on top of it which represent the operations.
While most of my…

jan
- 927
- 2
- 9
- 20
10
votes
6 answers
C++ RPC tutorial?
I want to learn programming C++ (native) on Windows platform for RPC communication. I want to learn both server and client side. I also want to learn some advanced topics, like performance and security.
Any good recommended materials to read?
(BTW:…

George2
- 44,761
- 110
- 317
- 455
9
votes
1 answer
How to handle RPCs in client-server PlayN game?
I'd like to use PlayN to create a client/server card game, e.g. Hearts. While I'm mostly focusing on the HTML5 output, I'd ideally like to be output-platform-agnostic in case I decide to make an Android client in the future. How should I approach…

Mark Schmit
- 467
- 4
- 13
9
votes
1 answer
RestyGWT vs RequestFactory
I'm thinking on migrating my current service layer based on GWT-RPC to something else. It is about 10 service interfaces with 5 methods each, and involving about 20 different domain entities, so you have an idea of the amount of work that would…

Ariel Scarpinelli
- 320
- 1
- 13
9
votes
2 answers
How to listen to firestore through RPC
I want to listen to real time changes in firestore and I am also only allowed to use Go. Since firestore SDK for Go doesn't have any option to listen for real time changes, I decided to use the firestore v1beta1 sdk.
I have written the following…

Samyak
- 405
- 3
- 13
9
votes
3 answers
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 refer to, please tell me.
Thanks.

Huang F. Lei
- 1,835
- 15
- 23