views:

25

answers:

2

I known python can use pipe to communicate between two process of py.

But, data and functions of this method are not clear.

I like .net remoting better.

So, can python realize that approach?

+1  A: 

Yes, you can do this using (for example) PYRO (Python Remote Objects).

Vinay Sajip
A: 

The ability to share "data and functions" is better known as a web service or remote procedure call (RPC). This has the benefit of working between nearly any computer language on any operating system, whereas ".net remoting" will mainly only work on a Windows computer between programs written in a .net technology.

There are many Python libraries supporting various web service and RPC protocols.

http://docs.python.org/library/xmlrpclib.html

http://wiki.python.org/moin/WebServices

http://diveintopython.org/soap_web_services/

Chris S