SimpleXMLRPCServer to fastcgi via WSGI?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ivan Voras

    SimpleXMLRPCServer to fastcgi via WSGI?

    Hi,

    Is there a straightforward way to convert an XML-RPC server application
    (written for SimpleXMLRPCSer ver) to use WSGI so that it can be used as s
    fastcgi server? By "straightforwar d" I mean something simple, without
    using some external framework.

    Alternatively, I don't really care about WSGI, so something that makes
    it work as fastcgi directly will also be ok.
  • Joshua Kugler

    #2
    Re: SimpleXMLRPCSer ver to fastcgi via WSGI?

    Ivan Voras wrote:
    Is there a straightforward way to convert an XML-RPC server application
    (written for SimpleXMLRPCSer ver) to use WSGI so that it can be used as s
    fastcgi server? By "straightforwar d" I mean something simple, without
    using some external framework.
    >
    Alternatively, I don't really care about WSGI, so something that makes
    it work as fastcgi directly will also be ok.
    You don't need WSGI to use FastCGI. See
    http://pypi.python.org/pypi/python-fastcgi It says it includes WSGI server
    implementations , but that doesn't mean you have to use them.

    j

    Comment

    Working...