Re: Remote Function Call

2006-01-13 Thread Mike
Thanks Everyone for your input. Mike -- http://mail.python.org/mailman/listinfo/python-list

Re: Remote Function Call

2006-01-13 Thread david mugnai
On Thu, 12 Jan 2006 18:29:50 -0800, Mike wrote: > Sounds like what I need. Thanks Irmen. I heard google uses python with please look carefully at this page: http://pyro.sourceforge.net/manual/9-security.html particulary: http://pyro.sourceforge.net/manual/9-security.html#pickle another option is

Remote Function Call

2006-01-13 Thread Mike
Hi, I have two machines. A python program on machine 1 needs to make a python call to a method in machine 2. What is the most efficient / fast / programmer friendly way to do it? - XML-RPC? - Http Call? Thanks, Mike -- http://mail.python.org/mailman/listinfo/python-list

Re: Remote Function Call

2006-01-13 Thread Frithiof Andreas Jensen
"Mike" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, > > I have two machines. A python program on machine 1 needs to make a > python call to a method in machine 2. What is the most efficient / fast Some Custom Mechanism: Pyro or SPREAD f.ex. > / programmer friendly way to do

Re: Remote Function Call

2006-01-12 Thread Irmen de Jong
Mike wrote: > Hi, > > I have two machines. A python program on machine 1 needs to make a > python call to a method in machine 2. What is the most efficient / fast > / programmer friendly way to do it? > > - XML-RPC? > - Http Call? use Pyro http://pyro.sourceforge.net --Irmen -- http://mail.pyt

Re: Remote Function Call

2006-01-12 Thread Mike
Sounds like what I need. Thanks Irmen. I heard google uses python with multiple machines... how do they do it? Mike -- http://mail.python.org/mailman/listinfo/python-list