gpt4 book ai didi

python - 使用 XMLRPC 将文件从客户端发送到服务器?

转载 作者:太空狗 更新时间:2023-10-29 17:17:22 27 4
gpt4 key购买 nike

我想编写 Python 代码来将文件从客户端发送到服务器。服务器需要保存从客户端发送的文件。但是我的代码有一些我无法修复的错误。以下是我的服务器代码:

# server.py
from SimpleXMLRPCServer import SimpleXMLRPCServer
import os

server = SimpleXMLRPCServer(('localhost', 9000))

def save_data(data):
handle = open("x123.dat", "wb")
handle.write(data)
handle.close()

server.register_function(save_data, 'save_data')
server.serve_forever()

和客户端代码:

# client.py
import sys, xmlrpclib

proxy = xmlrpclib.Server('http://localhost:9000')
handle = open(sys.argv[1], "rb")
proxy.save_data(handle.read())
handle.close()

但随后我运行我的代码,客户端返回以下错误(这是在 Windows 上):

Traceback (most recent call last):
File "client.py", line 6, in <module> proxy.save_data(handle.read())
File "c:\python27\lib\xmlrpclib.py", line 1224, in __call__
return self.__send(self.__name, args)
File "c:\python27\lib\xmlrpclib.py", line 1575, in __request
verbose=self.__verbose
File "c:\python27\lib\xmlrpclib.py", line 1264, in request
return self.single_request(host, handler, request_body, verbose)
File "c:\python27\lib\xmlrpclib.py", line 1297, in single_request
return self.parse_response(response)
File "c:\python27\lib\xmlrpclib.py", line 1473, in parse_response
return u.close()
File "c:\python27\lib\xmlrpclib.py", line 793, in close
raise Fault(**self._stack[0])
xmlrpclib.Fault: <Fault 1: "<class 'xml.parsers.expat.ExpatError'>:not well-formed (invalid token): line 7, column 1">

我有一些问题:

  1. 如何修复上面的bug?

  2. 我的代码有时需要传输一些大文件。由于我的方法如此简单,我怀疑它是否能有效地移动大数据。有人可以建议一种更好的方法来移动大文件吗? (当然最好在Python上使用XMLRPC)

最佳答案

服务器端:

def server_receive_file(self,arg):
with open("path/to/save/filename", "wb") as handle:
handle.write(arg.data)
return True

客户端:

with open("path/to/filename", "rb") as handle:
binary_data = xmlrpclib.Binary(handle.read())
client.server_receive_file(binary_data)

这对我有用。

关于python - 使用 XMLRPC 将文件从客户端发送到服务器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9099174/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com