Skip to content

Files

Latest commit

ca19389 · May 28, 2018

History

History
22 lines (15 loc) · 845 Bytes

in_depth.rst

File metadata and controls

22 lines (15 loc) · 845 Bytes

Using Zeep

WSDL documents provide a number of operations (functions) per binding. A binding is collection of operations which are called via a specific protocol.

These protocols are generally Soap 1.1 or Soap 1.2. As mentioned before, Zeep also offers experimental support for the Http Get and Http Post bindings. Most of the time this is an implementation detail, Zeep should offer the same API to the user independent of the underlying protocol.

One of the first things you will do if you start developing an interface to a wsdl web service is to get an overview of all available operations and their call signatures. Zeep offers a command line interface to make this easy.

python -mzeep http://www.soapclient.com/xml/soapresponder.wsdl

See python -mzeep --help for more information.