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