First page Back Continue Last page Overview Graphics
XML-RPC for data analysis
"Does distributed computing have to be any harder than this? I don't think so." -- Byte. “That depends ...” -- Andy
Java calling Python example
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
Vector iparams = new Vector();
iparams.addElement(new Integer(5));
iparams.addElement(new Integer(3));
Integer isum = (Integer) client.execute("sum", iparams);