- 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:
parent
59f034704a
commit
a26a15f3c1
3 changed files with 76 additions and 0 deletions
4
gnome-frontend/src/soapclient/__init__.py
Normal file
4
gnome-frontend/src/soapclient/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/python
|
||||
"""
|
||||
This package contains the SOAP client for the gnuviech admin tool
|
||||
"""
|
||||
9
gnome-frontend/src/soapclient/soapclient.py
Normal file
9
gnome-frontend/src/soapclient/soapclient.py
Normal 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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue