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 ...

learn more… | top users | synonyms

0
votes
1answer
35 views

What RPC protocols does AppEngine support for connecting to Compute Engine?

Now that Compute Engine is open to the public, what protocols besides HTTP can you use from AppEngine to connect to backend Compute Engine servers? Also, Ilya Grigorik has been advocating using SPDY ...
0
votes
0answers
29 views

GWT Asynchronouscallback timeout issue: Always going in OnFailure()

I am new to GWT. I have written a piece of code which makes asynchronous calls to the server. The server side code is running fine as seen through the logs. But on the client side I am getting a ...
0
votes
0answers
8 views

RPC binding handle

I'm trying to understand what RPC binding handle is (DCE1.1 Remote procedure call). Does the binding handle is valid as long as the connection between the RPC client and server is active? What happens ...
1
vote
1answer
24 views

JQuery Ajax to JSONRPC Proxy

I've been trying to figure this out for 2 days. I've tried every JSONRPC library there is, but none of them worked so I resorted to doing it myself. I make a simple AJAX call to the proxy - written ...
1
vote
1answer
30 views

Transform RPC-encoded message to MTOM in WSO2ESB

I'm facing this problem while working with WSO2 ESB: I need to transform a RPC-encoded message which includes a byte array into a new MTOM-based message which contains the ID of that byte array and ...
0
votes
1answer
24 views

GWT RPC XSRF protection

After adding GWT RPC XSRF protection what should be different in the RPC calls? I followed the changes mentioned in this post(GWT (2.4.0) + XSRF and ...
1
vote
1answer
17 views

Should I use AMQP RPC or AMQP + REST

I really like the idea of setting up a service such as RabbitMQ to handle my larger jobs and have n workers scale and process those requests. My question lies in if I should also handle 'quick' ...
3
votes
0answers
57 views

Is this a bug or a feature of ManagementScope?

http://msdn.microsoft.com/en-us/library/system.management.connectionoptions.aspx ConnectionOptions co = new ConnectionOptions(); co.Username = CreateUserName(Domain, Username); If I use the ...
1
vote
0answers
53 views

Remote procedure call in linux

This is my client code cl.c #include "S.h" int main() { CLIENT *cl; cl=clnt_create("127.0.0.1",S_PROG,S_VERS,"tcp"); struct st i,*o;i.a=3; o=square_1(&i,cl); ...
1
vote
1answer
48 views

Windows START command failing to run when executed from RPC

Long story short I have written a program that allows me to install software and run commands on Windows machines remotely. I have been using the START command (which i learned about from another ...
-2
votes
0answers
16 views

RpcBindingFree Memory Leak [closed]

Need some help troubleshooting a memory leak issue in some windows RPC code. Basically we are seeing some RPC binding handles that are not created by us, allocate memory and never release it. We are ...
-1
votes
2answers
30 views

What kinds of design patterns can I use in this project? [closed]

I want to write a small project which is a XML-RPC framework, and I am learning design patterns. So I want to use some design patterns in my project. Could someone help me figure out which design ...
0
votes
3answers
42 views

what technology to use for a database service?

I am going to make a small trade management system. I want to make a independent database service to which all the other client connect. The database will be MYSQL and I will be using Java for making ...
0
votes
1answer
43 views

High performance distributed asynchronous RPC in java

I would like to do RPC to a list of clients with the following requirements: the server does not know the clients (implies a kind of broker?) and the cleints do not know the server there may be ...
-1
votes
0answers
15 views

JAVA RPC with website [closed]

I would have pieces of information. Well, I have several computers that communicate with a remote server via a Java application (via the RPC technology) and I would like to have a web interface on the ...
0
votes
0answers
45 views

uLink messaging with RabbitMQ and Unity3D

Can a server built with node.js, for example, which can talk to RabbitMQ via a RabbitMQ node.js client talk to a uLink server? Does anyone know if there are any technical barriers to communication ...
-1
votes
0answers
39 views

mounting NFS on LINUX RPC: timed out message [closed]

I'm trying to mount a NFS-share between two LINUX kernel, but when I write in the client mount -o nolock,tcp,nfsvers=3 192.168.0.2:/home/xavier/Develop /mnt/develop I get mount: RPC: Timed out ...
-1
votes
0answers
22 views

qx.ui.form.list RPC query and Local error 2: Aborted db

I have a sqlite db with one table containing the following columns: day, week, init, end, task_time, customer, task, job I make a db navigator with qooxdoo time_recording.png in the video can ...
0
votes
1answer
8 views

Privacy protected RPC Channels

As the title says, i'm wondering what these are. I know about RPC but what do the prefixed adjectives mean? P.S.: I came across this term while reading about DPAPI @ MSDN: ...
0
votes
0answers
25 views

php-aria2 JSONRPC Empty reply from server

I use php-aria2 here to download remote files. But all request to 127.0.0.1:8100/jsonrpc returns null. aria2c works fine from command line. when I run this from command line curl ...
1
vote
2answers
85 views

GobEncoder for Passing Anonymous Function via RPC

I'm trying to build a system that will execute a function on multiple machines, passing the function anonymously via RPC to each worker machine (a la MapReduce) to execute on some subset of data. Gob ...
0
votes
0answers
107 views

Set-WmiInstance : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)--WMI permanent event creation

I ran below code on powershell 2. Os: window 7 both 32 bit and 64 bit Got below error any solution ? # ----------------------------------------------------------------------------- # Script: ...
0
votes
2answers
49 views

Ant Deploy War to Glassfish 3 server fails at GWT

I'm developing a system that deploys the applications which is selected from GWT interface. I've wrote build.xml accordingly; <target name="deploywar" description="Varolan WAR dosyasını ...
0
votes
3answers
93 views

QooxDoo FrontEnd + Python BackEnd ( SimpleXMLRPCServer) problems

I have tried Qooxdoo and I made a simple Python server with SimpleXMLRPCServer, with a Python test I get the data without problems, but can I get this data from Qooxdoo? I get lost, and I've searched ...
0
votes
2answers
42 views

ClassNotFoundException for RPC with GoogleAppEngine

I tried to deploy a locally working application to the GAE GoogleAppEngine. It already runs fine there, except for the RPC calls. They all throw ClassNotFoundExceptions. I'm just making RPC using ...
0
votes
2answers
48 views

GWT with XS. No POST, Just OPTIONS. Load cancelled

I have a problem with a GWT Application which is rather simple but using the Cross-Site-Scripting mechanism of gwt in conjunction with the GWT-RPC (Async-Interface). The Problem is, that the Browser ...
1
vote
0answers
65 views

Pika blocking_connection.py random timeout connecting to RabbitMQ

i have a rabbit mq running on machine both client and rabbitMQ are running on the same network rabbitMQ has many clients i can ping client from rabbitMQ and back longest latency measured between ...
0
votes
0answers
64 views

In Thrift, why does TThreadPoolServer not work with just one thread in the pool?

I wanted to measure the performance improvement of using a thread pool server relative to a completely non-threaded server, and it turned out that creating a pool of just one thread caused my server ...
0
votes
0answers
35 views

GWT RPC not working properly on Internet Explorer

I have developed a application in GWT 2.5.0. Its working perfectly fine in chrome and firefox, but when being tested in IE, the RPC fails. I tried to debug the app and found that IE is trimming down ...
-1
votes
0answers
33 views

Configure the custom ports for rpcbind in solaris 10? [closed]

How can I configure the custom ports for rpcbind, used in nfs solaris 10?
1
vote
0answers
72 views

XmlRpcException: Failed to read server's response: Connection refused: connect

I have XML-RPC server, which i believe is working fine. I can connect to server using telnet, and using web browser too, address is (dracek:8080) dracek=name of computer. When i try connect using my ...
1
vote
1answer
38 views

GAE - Should I chain asynchronous callbacks?

I'm new to using asynchronous callbacks and I'm not sure if what I'm planning out is the appropriate way to go about doing things. I'm working with Google App Engine along with Google Web Toolkit, and ...
0
votes
1answer
45 views

How to choose what source of stream needs to be processed in Storm?

I'm struggling with one thing in Storm. So the whole idea is: Send a request to the storm (probably to DRPC Server). The request will tell Storm what is the source of streams. For example: Image ...
0
votes
0answers
38 views

Connection to Windows Server 2008 R2 fails using WMI COM

I bought a new Microsoft Windows Server 2008 R2 server from a hosting provider. Now I am trying to do a remote launch of an exe that is placed on the Server using WMI in C++ on the Client side. I am ...
0
votes
1answer
48 views

Pros and Cons of using IPC method like RPC in a distributed system [closed]

I want to know what are the advantages and disadvantages of IPC method ?
1
vote
1answer
59 views

Talk to a uwsgi RPC app from a non uwsgi process

We have a working uwsgi server with some RPC calls (Note: we're able to use uwsgi.rpc to talk to the processes, so the setup on their end is good). We discovered that we have some processes that are ...
0
votes
0answers
35 views

RPC communication between Linux and Solaris

I have a RPC server running in Solaris. I have a RPC client which is running fine in Solaris. When I compile and run the same code in Ubuntu, I am getting Error decoding arguments in the server. ...
0
votes
2answers
65 views

Best Practice for implementing ClickHandlers for Many Buttons

I am currently designing a remote for a NAO robot with GWT and I'm looking for best practices to execute the supposed method of a button via a RPC. Currently I'm checking the buttons name with the ...
1
vote
3answers
69 views

GWT RPC AsynCallback skips onSucces and onFail methods

I've try to code a GWT application and I need to use RPC to get results from server side. I followed the GWT RPC tutorial and end up with some goods. But when I debug my program, I saw that my program ...
0
votes
0answers
108 views

error C2664: cannot convert parameter 1 from 'unsigned char *' to 'RPC_WSTR'

i am trying to create an RPC server and client program. I am using this tutorial http://www.codeproject.com/Articles/4878/Introduction-to-RPC-Part-2 i copied the code exactly as it is in the website ...
1
vote
2answers
165 views

difference between rpc and normal tcp/udp server client program?

so i have been searching different ways to create client and server program (using visual studios in c++) and i came across RPC (Remote Procedure Call). But i noticed that this also uses a tcp/ip or ...
0
votes
0answers
56 views

Cant connect to custom TCP port when app hosted on uwsgi

APPLICATION : Python Bottle -> uWSGI -> nGINX What I basically want to do is expose some of my Class Methods for direct access from any other machine (RPC). I have developed something very similar to ...
-2
votes
1answer
25 views

Code base protect at demarsheling time [closed]

According to wiki Marshalling marshalling an object includes codebase and object data. If codebase i.e. source code of class of an object is transferred to another machine , how can it be protected ...
0
votes
2answers
45 views

Let mathjax reload page after an rpc

I just want to do something like this: contentAsync.load("linear_regression", new AsyncCallback<String>() { public void onFailure(Throwable caught) { content.add(new ...
1
vote
1answer
55 views

Sharing data structures between 2 Python processes

I have 2 applications/process/scripts running with Python 3: there is some easy RPC mechanism to share lists, tuples and data structures between this 2 separate processes ? To be precise this 2 ...
0
votes
1answer
91 views

GWT Upload/Download best practices

So I am new to GWT and am not sure what the best programming practices are for what I am trying to do. In my web application the user will be able to upload a data file, my application needs to be ...
1
vote
1answer
131 views

How to make an GWT server call(GWT RPC?) [closed]

Hi I am new to gwt(java based gui). Here i am trying to make a GWT server call. I want to save my MyBean into my Database. Later on i have to update,delete etc.. What are the possibilities and how ...
1
vote
0answers
174 views

python json-rpc

After a long time break from writing software, I've started contributing to a home automation project ( http://www.agocontrol.com ), by adding a squeezeboxserver client, written in pyhton -source ...
0
votes
1answer
33 views

Does corba allow a client to include it's own server stub

I am working on an application in which the clients send RPCs to server and also the server will be requesting services from the clients. My question is can the server have multiple client stubs and ...
0
votes
1answer
72 views

Vaadin GWT RPC setup?

I've been using smartGWT for a few years but have started looking at Vaadin. I've got the example running but am stumped when it comes to writing the RPC call. I have a connector: public class ...

1 2 3 4 5 20