mod_python with xmlrpclib

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

    mod_python with xmlrpclib

    I'm using Python 2.3.2 on Linux 2.6.2. I'm trying to create an
    XML-RPC handler that works with mod_python. I can get mod_python to
    show my POST data as I'd expect but it gives a ResponseError when
    processing that data with xmlrpclib.loads (). If I just paste that
    same data into a python script and again run it through
    xmlrpclib.loads () it works correctly. I can't figure out why one
    works and not the other and I can't figure out what the proper way
    to handle a ResponseError would be.

Working...