Re: allow_none=True in SimpleXMLRPCServer

2005-12-20 Thread Daniel Crespo
Hi Dody! It works perfect! Now, I want the SimpleXMLRPCServer.py not to be on the same directory, but in my /lib directory. I tried it, but it seems that the module loads from python24/ first. How can I change this? Thank you! -- http://mail.python.org/mailman/listinfo/python-list

Re: allow_none=True in SimpleXMLRPCServer

2005-12-14 Thread Daniel Crespo
Thank you very much! I will try it as soon as possible, and write you back with my results. Best regards Daniel -- http://mail.python.org/mailman/listinfo/python-list

Re: allow_none=True in SimpleXMLRPCServer

2005-12-14 Thread Dody Suria Wijaya
Hi, I faced the same same situation, and my quick problem solving was copying SimpleXMLRPCServer.py to current directory, and "patch" this line: response = xmlrpclib.dumps(response, methodresponse=1) into response = xmlrpclib.dumps(response, methodresponse=1, allow_none=True) Another better a

allow_none=True in SimpleXMLRPCServer

2005-12-12 Thread Daniel Crespo
Hello, Does anyone know which methods do I have to override for allowing Nones to be accepted and sended from SimpleXMLRPCServer to the client? Thanks Daniel -- http://mail.python.org/mailman/listinfo/python-list