Scott wrote:
I'm debugging an xmlrpc client/server application. Often when an exception occurs in the server, I receive only a very short error message on the client. For example:xmlrpclib.Fault: <Fault 1: "<type 'exceptions.AssertionError'>:"> Presumably this is because xmlrpclib on the server is catching the exception, and only sending the exception name to the client, not the server's stack trace.
xmlrpclib is a client library. The faultString message you see here is provided by the server.
</F> -- http://mail.python.org/mailman/listinfo/python-list
