我有一个简单的xmlrpc服务器设置来启动SMTP服务器,代码如下:
from SimpleXMLRPCServer import SimpleXMLRPCServer
import smtplib
# Create server
server = SimpleXMLRPCServer(("localhost", 1025), allow_none = True)
# add the introspection functions (system.listMethods, system.methodHelp
# and system.methodSignature)
server.register_introspection_functions()
def send(host, port):
server = smtplib.SMTP((host, port), None)
# register this method
server.register_function(send, 'send')
# start server
server.serve_forever()
我启动此服务器,并在客户端执行以下步骤:
import xmlrpclib
s = xmlrpclib.ServerProxy('http://localhost:1025')
s.send('0.0.0.0',25)
这导致了我不理解的以下错误:
xmlrpclib.Fault: <Fault 1: "<type 'exceptions.AttributeError'>:'tuple' object has no attribute 'find'">
这里的元组对象是什么意思?为什么代码需要查找属性?有什么想法可以帮助我让这些代码正常工作,即我能够发出xmlrpc请求来初始化(并在以后使用)xmlrpc服务器中的smtp服务器?
谢谢
亚历克斯