Sebastian Lara wrote: > Hello all, > > I'm using a SimpleXMLRPCServer to update a file remotely from a simple > xml-rpc python client. After that, I need to serve this file but I > don't know if I can do this with SimpleXMLRPCServer or if I need > another server.
If you want to serve the file over HTTP so it is visible in a browser you will need another server. If your needs are simple then SimpleHTTPServer, in the standard library, may work for you. If you need more functionality then you should look at the other HTTP servers available for Python such as CherryPy and Karrigell. Kent _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor