1
0
Fork 0

- SOAP interface for PHP

git-svn-id: file:///home/www/usr01/svn/gnuviechadmin/gnuviech.info/gnuviechadmin/trunk@165 a67ec6bc-e5d5-0310-a910-815c51eb3124
This commit is contained in:
Jan Dittberner 2006-02-21 19:51:23 +00:00
parent e1b3542a2a
commit d4f8dedfca
5 changed files with 107 additions and 3 deletions

View file

@ -11,9 +11,9 @@ class GnuviechAdminSOAPServer(SOAPServer):
"""
SOAP Server class for the gnuviech administration tool backend
"""
def echo(self, s):
self.logger.debug("calling echo with " + s)
return s + s
def echo(self, param0):
self.logger.debug("calling echo with " + param0)
return param0 + param0
def __init__(self):
SOAPServer.__init__(self, ("127.0.0.1", 8080))