I am new to XML-RPC.
#client code
import xmlrpclib
proxy = xmlrpclib.ServerProxy("http://localhost:8000/")
x,y = arg1,arg2
print proxy.fun1(x,y)
print proxy.fun2(x,y)
What server should do:
- load fun1
- register fun1
- return result
- unload fun1
and then do same with fun2.
What is the best way to do this?
I have figured out a way to do this but it sounds "clumsy,far fetched and unpythonic".