11 lines
175 B
Python
11 lines
175 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
from SOAPpy import SOAPServer
|
||
|
|
||
|
def echo(s):
|
||
|
return s + s
|
||
|
|
||
|
server = SOAPServer(("localhost", 8080))
|
||
|
server.registerFunction(echo)
|
||
|
|
||
|
server.serve_forever()
|