Hi,

   I have made a server code in xmlrpc. It has a command "server.register_multicall_functions()".  How do I write the same in twisted server? 

This is the main of the twisted server :
--------------------

if __name__ == '__main__':
    from twisted.internet import reactor
    r = Example()
    reactor.listenTCP(7070, server.Site(r))
    print 'avtundile'
    reactor.run()

-----------------------
Thanks,
Vinodh