1
0
Fork 0

- Gnuviech Admin Tool GNOME Frontend

git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@157 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
Jan Dittberner 2006-02-20 21:27:30 +00:00
parent 59f034704a
commit a26a15f3c1
3 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,4 @@
#!/usr/bin/python
"""
This package contains the SOAP client for the gnuviech admin tool
"""

View file

@ -0,0 +1,9 @@
#!/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);