python-zeep icon indicating copy to clipboard operation
python-zeep copied to clipboard

A Python SOAP client

Results 241 python-zeep issues
Sort by recently updated
recently updated
newest added

I am trying to consume a service, all the xml is generated correctly except this part, how can this tag be generated, thank you very much in advance timestamp_token =...

Hi, I'm trying to connect an application to the Dutch Chamber of Commerce (KvK) dataservice using python 3.7.3 and `zeep==3.4.0`. This appears to be a bit of a pain. The...

Fix #975 ## Description When using the WSA plugin, the header's field `MessageID` is created as follows: ```xml urn:uuid:cb4dd644-d178-433d-9ec5-799e13407867 ``` Some endpoints require the `urn:` prefix to be absent: ```xml...

Hi, I'm using the most recent version of zeep. I'm using this wsdl: wsdl = 'https://www.marktstammdatenregister.de/MaStRAPI/wsdl/mastr.wsdl' I'm using a query with an API ID - hence I did not upload...

Hi, 1. The version of zeep : 3.4.0 I'm not reporting an issue but a proposal to enhance the plugin feature. Do you think that it couldbe possible to move...

### Intro This example case comes from the infamous onvif world (for which there still isn't any working soap client) It's a bit too complicated to be forged into the...

Zeep should be able to generate API documentation for a WSDL with examples etc

enhancement

I used zeep for send request to onvif-cameras by onvif specification. I send request GetCapabilities and i got response like xml: http://10.184.1.114:80/onvif/device_service false false false false false true false false...

Just adding in a couple more annotations. FYI, it's rather verbose using `typing.*`, common practice is to use `from typing import ...`. Fixes #1203.

The problem is that the zero value that comes as part of element - ignores. It happens because value checked with `if` operator and zero check returns false. I added...