Registers the XML-RPC multicall method in the system namespace. see http://www.xmlrpc.com/discuss/msgReader$1208
(self)
| 234 | 'system.methodHelp' : self.system_methodHelp}) |
| 235 | |
| 236 | def register_multicall_functions(self): |
| 237 | """Registers the XML-RPC multicall method in the system |
| 238 | namespace. |
| 239 | |
| 240 | see http://www.xmlrpc.com/discuss/msgReader$1208""" |
| 241 | |
| 242 | self.funcs['system.multicall'] = self.system_multicall |
| 243 | |
| 244 | def _marshaled_dispatch(self, data, dispatch_method = None, path = None): |
| 245 | """Dispatches an XML-RPC method from marshalled (XML) data. |
no outgoing calls