Tagged Questions
Remote Procedure Call (RPC) is an approach to interprocessor or distributed communication wherein a set of services or procedures are exposed to remote clients. RPC is both a general concept for interprocessor communication and shorthand for Sun's original implementation (referred to as SunRPC to disambiguate.)
38
votes
9answers
1k views
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 ...
23
votes
6answers
6k views
What is the difference between Serialization and Marshalling?
I know that in terms of several distributed techniques like RPC the term Marshalling is used, but I don't get the difference with Serialization. It both is transforming objects to series of bits no?
...
22
votes
8answers
6k views
Examples of the best SOAP/REST/RPC web APIs? And why do you like them? And what's wrong with them? [closed]
At my company we're starting to branch into web APIs to access and update our data; initially for partners but then likely to the public in future. At the moment the way the API will look (e.g. SOAP, ...
20
votes
6answers
8k views
Interface Builder and Xcode integration not working
After having installed the iPhone SDK 3.1.2, Interface Builder is not in sync with Xcode anymore. The light indicator at the bottom of the XIB window is grey. IB doesn't see any files from the Xcode ...
18
votes
11answers
1k views
any good and simple RPC library for inter-process calls?
I need to send a (probably one) simple one-way command from client processes to server process with arguments of builtin C++ types (so serialization is pretty simple). C++, Windows XP+.
I'm looking ...
18
votes
6answers
8k views
C# int to byte[]
If I need to convert an int to byte[] I could use Bitconvert.GetBytes().
But if I should follow this:
An XDR signed integer is a 32-bit datum that encodes an integer in
the range ...
17
votes
9answers
1k views
What's a good Java-based Master-Slave communication mechanism?
I'm creating a Java application that requires master-slave communication between JVMs, possibly residing on the same physical machine. There will be a "master" server running inside a JEE application ...
16
votes
6answers
395 views
Good examples, articles and books on marshalling [closed]
While working on a software protection library for smart card based dongle I realized I need to transfer some tree-like data structures back and forth between client application and code inside the ...
13
votes
2answers
413 views
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 ...
13
votes
6answers
1k views
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, ...
13
votes
11answers
16k views
Google Web Toolkit (GWT) + Google App Engine (GAE) + Detached Data Persistence
I would like to develop a web-app requiring data persistence using GWT and GAE. As I understand it, my only (or at least by far the most convenient) option for data persistence is GAE's Datastore, ...
12
votes
3answers
435 views
developing a maintainable RPC system
I am working on a web application that will make extensive use of AJAX techniques for client/server communication...JSON-RPC specifically. Zend Framework is being used server-side, and it offers a ...
12
votes
6answers
2k views
How should a ZeroMQ worker safely “hang up”?
I started using ZeroMQ this week, and when using the Request-Response pattern I am not sure how to have a worker safely "hang up" and close his socket without possibly dropping a message and causing ...
10
votes
2answers
3k views
Git fails when pushing commit to github
I cloned a git repo that I have hosted on github to my laptop. I was able to successfully push a couple of commits to github without problem. However, now I get the following error:
Compressing ...
10
votes
5answers
2k views
fast-ish python/jython IPC?
All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django on CPython. I've ...
9
votes
3answers
249 views
Options for RPC in Mono? (WCF Alternatives)
I have had the opportunity to spend a great number of hours trying to use WCF in mono. It is simply too poorly implemented at this point to be put into a production environment, for anything beyond ...
9
votes
4answers
144 views
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, ...
9
votes
2answers
888 views
MessagePack: fast cross-platform serializer and RPC - please share experience
Looking for some fast, simple and stable RPC library I stumbled upon MessagePack project which seems to be very good. It is also under active development.
If you used it in any way, could you please ...
9
votes
3answers
7k views
REST vs. RPC
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 ...
9
votes
2answers
6k views
Session management in gwt
I am using GWT for my client side application. However, I am not sure how I can handle session management. The GWT application resides on one page, all server calls are done via AJAX. If a session ...
8
votes
6answers
2k views
SerializationPolicy error when performing RPC from within GWT application
I'm getting the following exception:
com.google.gwt.user.client.rpc.SerializationException: Type 'java.lang.Long' was not included in the set of types which can be serialized by this ...
8
votes
8answers
241 views
How to identify what state variables are read/written in a given method in C#
What is the simplest way to identify if a given method is reading or writing a member variable or property?
I am writing a tool to assist in an RPC system, in which access to remote objects is ...
8
votes
3answers
548 views
Should I RESTify my RPC calls over HTTP?
We have HTTP webservices that are RPC. They return XML representing the object the either retrieved or created. I want to know the advantages (if any) of "restifying" the services.
POST ...
8
votes
6answers
3k views
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.
7
votes
3answers
2k views
Python Twisted JSON RPC
Can anyone recommend some simple code to set up a simple JSON RPC client and server using twisted?
I found txJSON-RPC, but I was wondering if someone had some experience using some of these anc could ...
7
votes
4answers
6k views
What is the difference between Java RMI and RPC?
What is the actual difference between Java RMI and RPC?
I have read in some places that RMI uses Objects?
7
votes
6answers
1k views
What is the current choice for doing RPC in Python?
Actually, I've done some work with Pyro and RPyC, but there is more RPC implementation than these two. Can we make a list of them?
Native Python-based protocols:
PyRo (Python Remote Objects)
RPyC ...
7
votes
7answers
4k views
Using Python from within Java [closed]
Possible Duplicate:
Java Python Integration
I have a large existing codebase written in 100% Java, but I would like to use Python for some new sections of it. I need to do some text and ...
7
votes
2answers
1k views
Asynchronous Remoting calls
We have a remoting singleton server running in a separate windows service (let's call her RemotingService). The clients of the RemotingService are ASP.NET instances (many many).
Currently, the ...
6
votes
1answer
117 views
Optimized way to do RPC in .Net
I'm considering to move parts of a .Net application to other computers. The obvious way to do this is simply using WCF with a binary tcp protocol, for example as describer in " Easiest way to get fast ...
6
votes
2answers
270 views
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 ...
6
votes
3answers
1k views
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. ...
6
votes
1answer
779 views
Comparison of the multiprocessing module and pyro?
I use pyro for basic management of parallel jobs on a compute cluster. I just moved to a cluster where I will be responsible for using all the cores on each compute node. (On previous clusters, ...
6
votes
2answers
2k views
inter jvm communication
I am looking for an inter-process communication library in Java. I am looking to send small messages between JVMs and would like to do it using shared memory if I could.
6
votes
5answers
7k views
Socket Exception: “There are no more endpoints available from the endpoint mapper”
I am using winsock and C++ to set up a server application. The problem I'm having is that the call to listen results in a first chance exception. I guess normally these can be ignored (?) but I've ...
5
votes
1answer
123 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 - ...
5
votes
1answer
197 views
GWT & XSRF Protection
I'm looking at possible solutions to protect my GWT app against XSRF.
If I understand GWT's solution correctly - it makes available a Servlet which you use to both generate the token on the ...
5
votes
3answers
165 views
What are the benefits of switching legacy RPC style services over to REST?
I am maintaining a legacy app full of RPC style* web services. For example, we have the following services for creating and deleting users from the system:
https://example.com/createUser
...
5
votes
3answers
683 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 ...
5
votes
3answers
6k views
How to implement a login page in a GWT app?
My WebApp needs to authenticate user before allowing any sort of access. The scenario I'm trying to implement is a login page with username and password fields. Once user hits "send" button, a sign ...
5
votes
1answer
743 views
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 ...
5
votes
1answer
4k views
GWT Simple RPC use case problem : Code included
I am trying to work out how to send a domain object from the server-side to the client-side using GWT RPC. I've coded a really simple use case that represents the sort of thing I (and others?) need to ...
5
votes
4answers
1k views
How can I call a GWT RPC method on a server from a non GWT (but Java) gapplication?
I have a regular Java application and want to access an GWT RPC endpoint. Any idea how to make this happen? My GWT application is on a GAE/J and I could use REST for example but I already have the GWT ...
5
votes
3answers
2k views
problem with GWT 2.0 Chrome developer plugin
I have recently updated the GWT SDK from 1.5.3 to 2.0.0 on a project. I managed to fix all issues but one.
I can't use the development mode with chrome. The login page of my application loads ...
5
votes
2answers
1k views
What do you use for client to server communication with GWT?
GWT RPC is proprietary but looks solid, supported with patterns by Google, and is mentioned by every book and tutorial I've seen. Is it really the choice for GWT client/server communcation? Do you ...
5
votes
6answers
8k views
GWT with JDO problem
I just start playing with GWT I'm having a really hard time to make GWT + JAVA + JDO + Google AppEngine working with DataStore.
I was trying to follow different tutorial but had no luck. For example I ...
4
votes
3answers
239 views
Any opensource C/C++ Libraries/Frameworks for RPC over pipes/internal linux sockets?
I am looking for a lightweight opensource library/framework preferably written in C/C++ (it doesn't have to support x languages and should be easy to understand and use.) which can be used to make RPC ...
4
votes
3answers
72 views
Keep remote objects updated
Having two object A, B, of the same Class (for example HashMaps).
At different computers connected by internet
One (A) is the source and the other (B) is just as an updated copy...
Is there a ...
4
votes
7answers
2k views
C++ RPC library suggestions
I'm looking for suggestions regarding RPC libraries implemented in C++, for C++ developers.
Some requirements constraints:
Should work on both linux/unix and win32 systems
Be able to execute free ...
4
votes
3answers
608 views
What methods exist for local remote procedure call?
I am working on two separate C# applications, and I'm trying to determine what is the best way to create a remote procedure call from one app to the other. Webservices are not necessary in this case ...