Please recommend a RPC system working with twisted.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?GB2312?B?0rvK18qr?=

    Please recommend a RPC system working with twisted.

    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 of the system shall be written in C.

    4. Could easily integrated with twisted.

    Unfortunately, there seems no such resolution existed. So maybe I
    have to give up some requirements.

    ---------------------------------------------------------------------------------------------------------------------------

    It would be wonderful if ICE could integrate with twisted!
  • Diez B. Roggisch

    #2
    Re: Please recommend a RPC system working with twisted.

    一首诗 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 support. Part of the system shall be written in C.
    CORBA, especially the very good omniORB-implementation for Python.
    4. Could easily integrated with twisted.
    >
    Unfortunately, there seems no such resolution existed. So maybe I
    have to give up some requirements.
    The last one, yes. At least it should be possible to integrate using
    threading though. And *maybe* you can even provide some event loop
    integration as well - I think omniORB should be that flexible.

    Diez

    Comment

    • mk

      #3
      Re: Please recommend a RPC system working with twisted.

      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.


      Comment

      • Larry Bates

        #4
        Re: Please recommend a RPC system working with twisted.

        ??? 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 support. Part of the system shall be written in C.
        >
        4. Could easily integrated with twisted.
        >
        Unfortunately, there seems no such resolution existed. So maybe I
        have to give up some requirements.
        >
        ---------------------------------------------------------------------------------------------------------------------------
        >
        It would be wonderful if ICE could integrate with twisted!
        Twisted Perspective Broker?

        -Larry

        Comment

        Working...