Asynchronous XML-RPC client library?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Jarek Zgoda

    #1

    Asynchronous XML-RPC client library?

    Is there anything like that? Googling yields many articles on async
    servers, but virtually nothing on clients. I have to talk to remote in
    an environment that does not allow threads...

    --
    Jarek Zgoda

  • =?ISO-8859-2?Q?=22Martin_v=2E_L=F6wis=22?=

    #2
    Re: Asynchronous XML-RPC client library?

    Jarek Zgoda schrieb:
    Is there anything like that? Googling yields many articles on async
    servers, but virtually nothing on clients. I have to talk to remote in
    an environment that does not allow threads...
    My recommendation would be to use xmlrpclib, and combine it with
    the async framework that you currently use.

    Regards,
    Martin

    Comment

    • Jarek Zgoda

      #3
      Re: Asynchronous XML-RPC client library?

      Martin v. Löwis napisa³(a):
      >Is there anything like that? Googling yields many articles on async
      >servers, but virtually nothing on clients. I have to talk to remote in
      >an environment that does not allow threads...
      >
      My recommendation would be to use xmlrpclib, and combine it with
      the async framework that you currently use.
      Found a recipe, finally. Not that it was easy and the weird thing is it
      was posted to PyGTK list and I even replied to this post...

      Here's the link to the code by Andrew Kuchling, for the impatient:


      --
      Jarek Zgoda

      Comment

      • Stefano Canepa

        #4
        Re: Asynchronous XML-RPC client library?

        On 29 Apr, 07:11, Jarek Zgoda <jzg...@o2.usun .plwrote:
        Is there anything like that? Googling yields many articles on async
        servers, but virtually nothing on clients. I have to talk to remote in
        an environment that does not allow threads...
        >
        --
        Jarek Zgodahttp://jpa.berlios.de/
        Why don't you try twisted (http://www.twistedmatrix.com)

        Bye
        Stefano



        Comment

        • Jarek Zgoda

          #5
          Re: Asynchronous XML-RPC client library?

          Stefano Canepa napisa³(a):
          >Is there anything like that? Googling yields many articles on async
          >servers, but virtually nothing on clients. I have to talk to remote in
          >an environment that does not allow threads...
          >
          Why don't you try twisted (http://www.twistedmatrix.com)
          Because this is a small plugin to a larger application written in C and
          I don't want to make such dependency. Twisted is just too large to be a
          dependency for a ~500 LOC (including GUI code) plugin.

          --
          Jarek Zgoda

          Comment

          Working...