Server code (based on Python library reference):

from xmlrpc.server import SimpleXMLRPCServer
from xmlrpc.server import SimpleXMLRPCRequestHandler

class RequestHandler(SimpleXMLRPCRequestHandler):
    rpc_paths = ()

server = SimpleXMLRPCServer(("127.0.0.1", 8000),
                            requestHandler=RequestHandler)
server.register_introspection_functions()

l = list()

def say_hi():
    return 'hi !'

def append(event):
    l.append(event)

server.register_function(say_hi)
server.register_function(append)

server.serve_forever()

Client (interpreter started from another terminal window):

>>> from xmlrpc.client import ServerProxy
>>> s = ServerProxy('http://127.0.0.1', allow_none=True)
>>> s.say_hi()
'hi !'
>>> s.append(1)
Traceback (most recent call last):
...
xmlrpc.client.Fault(Fault 1: "<class 'TypeError'>:cannot
                    marshal None unless allow_none is enabled")

How do I fix this? Am I using xmlrpc improperly?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Your XMLRPC server is raising a fault since it cannot marshal None. You need to add allow_none=True to the server constructor:

server = SimpleXMLRPCServer(("127.0.0.1", 8000),
                        requestHandler=RequestHandler, 
                        allow_none=True)
link|improve this answer
I'd also point out that this None comes from the fact that the append() function on your server does not return anything; therefore it returns None, and when the XMLRPC mechanism tries to marshal that None back to the client as a return value, said exception was thrown, instead. – Santa Mar 31 '11 at 17:51
feedback

The error message is self-speaking.

append() returns None which can not be marshalled unless you specify allow_none.

Reading error messages and the API documentation

http://docs.python.org/library/simplexmlrpcserver.html

is your friend.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.