1
0
Fork 0
gnuviechadmin-historic/gnome-frontend/src/soapclient/soapclient.py
Jan Dittberner a26a15f3c1 - Gnuviech Admin Tool GNOME Frontend
git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@157 a67ec6bc-e5d5-0310-a910-815c51eb3124
2006-02-20 21:27:30 +00:00

9 lines
219 B
Python

#!/usr/bin/python
from SOAPpy import SOAPProxy
class SOAPClient:
def __init__(self):
self.server = SOAPProxy("http://localhost:8080/")
def echo(self, value):
return self.server.echo(value);