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

There is a regression on issue #183 ValueError: No visitor defined for '{http://www.w3.org/2001/XMLSchema}notation' I can confirm that this bug was still solved in zeep 3.4.0, but re-appeared in zeep 4.0.0....

Hi Michael. Thank you for the excellent library. One question or it is a bug I have wsdl file ```xml ``` My python code ```python client = zeep.Client('path to wsdl...

bug

It seems like the OperationProxy might return zeep.xsd.valueobjects.CompoundValue or lxml.etree.Element. This is an excerpt from WSDL file, this Response is returned as CompundValue: ```xml ``` But in this case an...

WSDL URL: https://api.ibb.gov.tr/iett/UlasimAnaVeri/HatDurakGuzergah.asmx?wsdl Generate error: ```python from zeep import Client wsdl_url = "https://api.ibb.gov.tr/iett/UlasimAnaVeri/HatDurakGuzergah.asmx?wsdl" client = Client(wsdl=wsdl_url) ``` I suspect this is some kind of bug with open-source WSDL. I tried...

1. Zeep version: 3. 2. The WSDL you are using: 3º part wsdl 3. I found a problem parsing a WSDL file, the problem is in the next function of...

I had to make the following improvements, please make changes to correct the errors of the zeep architects ```python class AsyncTransport(OriginalAsyncTransport): # noqa def __init__(self, auth: httpx.BasicAuth): params = dict(...

To remove the bus-factor a bit I am looking for co-maintainers. As mentioned in the README I don't foresee much new features to be developed, but mostly making sure it...

help wanted

To keep the issue tracker focused on issues in zeep please use discussions for other content

1) zeep version 3.2.0 2) WSDL: https://gist.github.com/apexo/f1ffbbb37764032bebb1936c3e8e8c25 3) Script: https://gist.github.com/apexo/372f69deee0a132458d506e78e8bea3d So I have a WSDL with a request that contains an optional repeatable element \ (minOccurs=0, maxOccours=unbounded) that is wrapped...