1
0
Fork 0
gnuviechadmin-historic/gnome-frontend/src/soapclient/soapclient.py

9 lines
219 B
Python
Raw Normal View History

#!/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);