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

We needed to send embedded XML as CDATA in the request. Without this modification, the embedded XML was escaped, now it is transmitted unmodified.

I need to be able to feed issuedtoken to zeep in order to get authentication however i could not figure out a way to do so. Here is the link...

Zeep version 4.1.0 installed via pip install zeep. I expect that if the response is entirely unparsable (perhaps because the server had an error and didn't even return XML), then...

How to add additional header along with wsse. For example. I have already add line below client = Client(url, wsse=UsernameToken(user, password), plugins=[history]) How to add additional header like X-Validate_only:1 ?...

One the following line, https://github.com/mvantellingen/python-zeep/blob/2f35b7d29355ba646f5e3c6e9925033d5d6df8bb/src/zeep/wsdl/bindings/soap.py#L103 shouldn't this be indented into the `if client` block? Otherwise, the situation could arise where `client` is `None`, resulting in a `AttributeError` on performing `client.settings.extra_http_headers`...

Experiencing _Fault_ with "Unknown fault occured" message when a 202 status-code returns with content. ### Context * zeep version: 4.1.0 * [WSDL used (soap.wsdl)](https://github.com/mvantellingen/python-zeep/blob/master/tests/wsdl_files/soap.wsdl) ### Test to Prove Issue Runnable...

Hi I encountered a strange SOAP endpoint that in some cases (e.g. no results) returns an empty body element. When that happens we reach this point and an empty list...

## Problem `AsyncClient` makes a blocking call in its constructor, likely occurring in the `Document.load` method. This can cause the entire application to freeze until the client finishes this initial...

Trying to read attributes from the `Settings` object in Python 3.12 is causing an infinite recursion loop. Tested working on 3.12 and 3.10

`Lib\site-packages\zeep\utils.py:1: DeprecationWarning: 'cgi' is deprecated and slated for removal in Python 3.13`