a remote procedure call (RPC) is a form of inter-process communication (IPC)
Questions tagged [rpc]
2527 questions
45
votes
9 answers
What public APIs are provided by Governments to the public?
I stumbled across NOAA's SOAP Service and it got me thinking. What other eGovernment services are provided to Business and the general public by Governments? I know the United States has a lot APIs, but what about other governments like the…

rook
- 66,304
- 38
- 162
- 239
40
votes
3 answers
REST vs. RPC in PHP
I'm building my own Ajax website, and I'm contemplating between REST and RPC.
If my server supported Servlets I'd just install persevere and end the problem, but my server doesn't support Servlets.
RPC is simpler to code (IMO) and can be written in…

the_drow
- 18,571
- 25
- 126
- 193
34
votes
2 answers
exception in GWT RPC app
I am using GWT RPC & Hibernate to insert and retrieve data from MySQL using eclipse environment. I have written two methods in service interfaces to insert & retrieve data from a single MySQL table.
The program is running fine but it is raising this…

enterprize
- 1,179
- 8
- 29
- 43
34
votes
3 answers
What is the difference between Socket and RPC?
What is the actual difference between Socket and RPC (Remote Procedure Call)?
As per my understanding both's working is based on Client–server model. Also which one should be used in which conditions?
PS: Confusion arise while reading Operating…

roottraveller
- 7,942
- 7
- 60
- 65
34
votes
2 answers
SOAP web services in Haskell?
I have to write a bunch of small web services. They must be defined by a WSDL and work via SOAP-RPC, in order to work with an existing workflow engine and service registry framework. I can, however, serve them on a service stack/platform of my…

Dave
- 341
- 2
- 3
33
votes
1 answer
GWT RPC data format
How does the data format for Google Web Toolkits (GWT) RPC calls look and how are IsSerializable objects transmitted. I know that Java Serializable transmits some kind of binary format, but is this the case with GWT too? (Since I don't expect it to…

Stefan
- 14,826
- 17
- 80
- 143
33
votes
3 answers
Can protobuf service method return primitive type?
I'm trying to use Google protobuf and i 'm having the next descriptions:
message.proto file:
message Request {
required int32 id = 1;
optional string value = 2;
}
service.proto file:
import "message.proto";
service Service {
rpc request…

4ntoine
- 19,816
- 21
- 96
- 220
30
votes
8 answers
Why does NFS use UDP by default?
I'm sure there's some ancient legacy reason for it, but what is it? It seems like a service that's geared towards reliable data delivery.

jdizzle
- 4,078
- 1
- 30
- 38
29
votes
2 answers
How many Datastore reads consume each Fetch, Count and Query operations?
I'm reading on Google App Engine groups many users (Fig1, Fig2, Fig3) that can't figure out where the high number of Datastore reads in their billing reports come from.
As you might know, Datastore reads are capped to 50K operations/day, above this…

systempuntoout
- 71,966
- 47
- 171
- 241
29
votes
4 answers
In Node.js, how do I make one server call a function on another server?
Let's say I have 2 web servers. Both of them just installed Node.js and is running a website (using Express). Pretty basic stuff.
How can Server-A tell Server-B to execute a function? (inside node.js)
Preferably...is there a npm module for this…

TIMEX
- 259,804
- 351
- 777
- 1,080
29
votes
5 answers
Log all network interactions of Java application
I have a monstrous Java app (a client of little-known application server GNUEnterprise) and its source, which I can compile back after making some changes to it. The app uses network heavily and I need to monitor each request and response. I could…

Hnatt
- 5,767
- 3
- 32
- 43
28
votes
6 answers
What differentiates a REST web service from a RPC-like one?
I have a web application that uses AJAX to grab JSON data from the server. It requires that the user first log in with their browser so that a cookie can be set. Only the GET and POST verbs are used, where GET is for retrieving data and POST is for…

Daniel T.
- 37,212
- 36
- 139
- 206
27
votes
6 answers
TCP-based RPC server (Erlang or something similar?) for iOS/Android app communication
I'm building native mobile applications in both iOS and Android. These apps require "realtime" updates from and to the server, same as any other network-based application does (Facebook, Twitter, social games like Words with Friends, etc)
I think…

randombits
- 47,058
- 76
- 251
- 433
24
votes
2 answers
What is the difference between gRPC and CORBA?
I have a reasonable experience in developing both SOAP and REST web services (in java platform). I am trying to understand the difference between the gRPC and CORBA in every aspect apart from the fact that both enables platform-neutral way of…

Praveen
- 432
- 1
- 6
- 14
22
votes
2 answers
what are the disadvantages of RPC with respect to message passing?
what are the disadvantages of RPC with respect to message passing?

Anonymous
- 4,133
- 10
- 31
- 38