Added rpc.xmlclient backend plugin for forwarding; added corresponding unit tests

This commit is contained in:
Jason Gerard DeRose
2009-01-19 21:10:42 -07:00
parent bae9dd7c07
commit 55fba5420d
5 changed files with 203 additions and 16 deletions

View File

@@ -44,8 +44,6 @@ class xmlserver(Backend):
"""
def dispatch(self, method, params):
assert type(method) is str
assert type(params) is tuple
self.debug('Received RPC call to %r', method)
if method not in self.Command:
raise CommandError(name=method)