Exemplo n.º 1
0
def main():
    server = ServiceProxy('../binding.wsdl', use_wsdl=True)

    print(' Sending: %s' % MESSAGE)
    response = server.echo(Message=MESSAGE)
    print('Response: %s' % response['Message'])
Exemplo n.º 2
0
Arquivo: client.py Projeto: 360ed/ZSI
def main():
    server = ServiceProxy('../binding.wsdl', use_wsdl=False)

    print ' Sending: %s' % MESSAGE
    response = server.echo(MESSAGE)
    print 'Response: %s' % response
Exemplo n.º 3
0
def main():
    server = ServiceProxy('../binding.wsdl', use_wsdl=False)

    print ' Sending: %s' % MESSAGE
    response = server.echo(MESSAGE)
    print 'Response: %s' % response