The thing is I want to send a ZIP file to a server, and what I basically do is enclose the file data into a Binary object by doing something like "data = "" f.read())". Then I call a function in the server, passing the object as a parameter, and have the server process the same file by doing something like
f = open("somefile.zip", 'w')
f.write(binaryObject.data )
Since I've never programmed server/client before, I've never faced the fact of sending a file to a remote machine.
I just want to know if what I've done to send the file is acceptable, and if you know of a better way to send files to a SimpleXMLRPCServer.
Thank you very much for your attention.
-- http://mail.python.org/mailman/listinfo/python-list