pb with xmlrpclib

Fredrik Lundh fredrik at pythonware.com
Fri Jul 6 14:09:45 EDT 2001


Alexandre wrote:
>
> >Have you tried
> >
> > server.echo(unicode('\231','latin-1'))
> >
> >?  Dunno about xmlrpc, but it works with SOAP.
>
> I've just tried it and it doesn't work with xmlrpclib. :o(

works on my box.  what Python version/distribution are you using?

if you disable the catch-all except in xmlrpcserver.py [1], what error
message do you get?

</F>

1) an easy way to disable an except: is to change it so it catches
an arbitrary string literal, e.g:

        except "spam":
            # internal error, report as HTTP server error
            self.send_response(500)






More information about the Python-list mailing list