From 733df2df42180487608688951acf1a83e079a86c Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Thu, 20 Sep 2007 15:08:27 -0400 Subject: initial code drop module_loader from the virt-factory node server xmlrpc server from the virt-factory-server code and some test modules no ssl support yet, no init scripts, no packagin etc --- client/test_func.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 client/test_func.py (limited to 'client/test_func.py') diff --git a/client/test_func.py b/client/test_func.py new file mode 100644 index 0000000..35ce100 --- /dev/null +++ b/client/test_func.py @@ -0,0 +1,11 @@ +#!/usr/bin/python + + +import xmlrpclib + +s = xmlrpclib.ServerProxy("http://127.0.0.1:51234") + +print s.test_add(1, 2) + + + -- cgit