Ejemplo 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'])
Ejemplo n.º 2
0
Archivo: client.py Proyecto: 360ed/ZSI
def main():
    server = ServiceProxy('../binding.wsdl', use_wsdl=False)

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

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