rpc

Easiest way to get fast RPC with .NET?

What's the easiest way to get RPC in .NET? I see that there is .NET Remoting and WCF, and according to Wikipedia, WCF is the successor to .NET Remoting. So far, I only tried the remoting stuff, which seems to be pretty simple -- I also didn't hit any problem with the application speed so far. Is .NET remoting really the best way to get ...

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 use it and if not why and what you chose? I assume that I have generic server application code that can accommodate for RPC, EJBs, web servic...

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 been beating my head against a wall getting any form of IPC going. The list of things I've tried: Apache Thrift doesn't have any actual re...

Using Python from within Java

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 language processing, and I'd much rather use Python and a library like NLTK to do this. I'm aware of the Jython project, but it looks like thi...

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, each core has been a separate node.) The python multiprocessing module seems like a good fit for this. I notice it can also be used for remo...

in ONC Rpc is it valid to call svc_run() from two threads, registered with different program no

In our project which supports multiplatform (Linux, Solaris, Windows) and coded in c,c++ , we are using ONC Rpc for IPC. Recently there is a requirement to have an application server to work on two different programs no. I have tried following to test. Created a multithread application Within that creted two worker threads I...

Drupal RPC Fault

Hopefully someone can help me with this problem. I'm starting to work with Drupal Services & Adobe Flex. I created a simple service and installed the AMFPHP module. In Adobe Flex when running the application, I don't seem to have a problem...and everything runs fine showing the data However, after uploading the .html and .swf files t...

Best approach for small scale distributed C++ apps

I am working on distributing a stand-alone app. Each instance of the app has to be able to send and receive queries. Requirements: Language - C++ Scale - small. May be 5 instances at a time Platform Independent Volume of data transferred is expected to be high(Raw images in the worst case) I don't want to use RPC because it needs a...

What is XRPC, how do I use it

I am trying to connect to Thomson Reuters Researcher ID service using XRPC. My questions are as follows: 1) What is XRPC? 2) What do I need to do to send the appropriate data ...

Android: Passing a Service a Handler

So, I've read the android AIDL documentation and have a general idea of how RPC works between an Activity and a Service. However, for my application it seems overboard to implement such features: basically, I want to pass a Service a nice handler so its thread can pass data to my Activity. Currently I'm getting around this by using a sta...

Communication between two separate applications

I have developed a windows service which reads data from a database, the database is populated via a ASP.net MVC application. I have a requirement to make the service re-load the data in memory by issuing a select query to the database. This re-load will be triggered by the web app. I have thought of a few ways to accomplish this e.g. R...

How to obtain object's data by using remote debugging functionality?

I wonder how can I use similar to Eclipse's remote debugging technique to get the data from remote object (that reside on server)? I am already have the client code and just want to extend it to bind (if possible) to some port and get the data from the server. Honestly I don't want to use anything specific on the server side (i.e. cre...

Remote Shutdown without (!) RPC Service

There are different ways of shutting down a computer remotely. Here are three I know of: Invoking the Shutdown method of the Win32_OperatingSystem class through a remote WMI connection Using the Microsoft Windows shutdown.exe Letting your (whatever).exe copy itself to the systemfolder on the target machine, register itself as a servic...

Removing popUpMenus from CNF (Common Navigator Framework) in Eclipse.

Hello all, I have been partially successful at removing almost all the popUp menus from the Commons Navigator Framework simply by configuring the plugin.xml file. There are 2 menus that refuse to go: group.edit and group.reorganize. My plugin.xml config looks like this: <extension point="org.eclipse.ui.navigator.viewer"...

How to call MySQL Stored Procedure from SQL Server 2000?

I have two databases, one MySQL 5, one SQL Server 2000. I've got the MySQL database mapped as a linked server in the MS SQL database. I'd like to call a stored procedure saved in the MySQL database from the MS SQL database. What's the correct syntax to do this? Is it even possible in SQL Server 2000? Edit: I've tried EXEC webpush......

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 [-2147483648,2147483647]. The integer is represented in two's complement notation. The most and least significant bytes are 0 and 3, resp...

What am I doing with with this flickr api query?

Hi guys, I'm new to the flickr API, and I assumed fetching photos from a given photoset was simply a case of making a rest request with an api key and user listed, like so: $ curl http://api.flickr.com/services/rest/?method=flickr.photosets.getList&amp;api_key=249f544ccfec879bc602f23c7441047c&amp;user_id=36940190@N04&amp;format=js...

Compare Java RPC vs WebServices

How do you compare Java RPC vs Java Web Services. I have a small hands on experience with Web Services. Now I need to know how RPC compares with Web Services. How does RPC work? Addition : When do we go for either of the options? ...

RPC for multiprocessing, design issues

Hey everyone, what's a good way to do rpc across multiprocessing.Process'es ? I am also open to design advise on the following architecture: Process A * 10, Process B * 1. Each process A has to check with proces B on whether a particular item needs to be queried. So I was thinking of implementing multiprocessing.Pipe() object for all...

(sun)RPC auth_unix

Im implementing my own RPC framework and well moste of the stuff is done but i need some help how do i verify a auth_unix? the structure of the data is definied in http://www.faqs.org/rfcs/rfc1050.html 9.2 UNIX Authentication but how should i verify the user? ...