Re: Please recommend a RPC system working with twisted.

2008-07-21 Thread Larry Bates
??? wrote: Hi all, I'm looking for an RPC system working with twisted. 1. Binary. I want it run faster than any xml based RPC. 2. Bidirectional. Unlike HTTP, on which the client has to poll the sever for events, the server should "call" the client's method to notify events. 3. C/Python sup

Re: Please recommend a RPC system working with twisted.

2008-07-21 Thread mk
Unfortunately, there seems no such resolution existed. So maybe I have to give up some requirements. Why not PYRO? Note: I haven't used it. -- http://mail.python.org/mailman/listinfo/python-list

Re: Please recommend a RPC system working with twisted.

2008-07-21 Thread Diez B. Roggisch
一首诗 wrote: > Hi all, > > I'm looking for an RPC system working with twisted. > > 1. Binary. I want it run faster than any xml based RPC. > > 2. Bidirectional. Unlike HTTP, on which the client has to poll the > sever for events, the server should "call" the client's method to > notify events.

Please recommend a RPC system working with twisted.

2008-07-21 Thread 一首诗
Hi all, I'm looking for an RPC system working with twisted. 1. Binary. I want it run faster than any xml based RPC. 2. Bidirectional. Unlike HTTP, on which the client has to poll the sever for events, the server should "call" the client's method to notify events. 3. C/Python support. Part o