Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

manatlan http://manatlan.online.fr

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

simple xmlrpc with python

code for the client :
from xmlrpclib import ServerProxy

print ServerProxy("http://127.0.0.1:9955").get_file()


code for the server :
import SimpleXMLRPCServer

def get_file():
    return "content"

server = SimpleXMLRPCServer.SimpleXMLRPCServer(("127.0.0.1", 9955))
server.register_function(get_file)
server.serve_forever()

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS