A fork of https://github.com/Synerty/SOAPpy-py3 This is a working tree till fixes get imported upstream.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
262 B

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. __docformat__ = 'restructuredtext en'
  4. #!/usr/bin/env python
  5. # coding:utf-8
  6. from SOAPpy import SOAPProxy
  7. server = SOAPProxy("http://localhost:8080/")
  8. print(server.echo("Hello world"))
  9. # vim:set et sts=4 ts=4 tw=80: