python-zeep
python-zeep copied to clipboard
A Python SOAP client
You have added **AsyncClient** to thee `__init__` file for doing `from zeep import AsyncClient` but it is impossible with **AsyncTransport** as far as it it not in the `src/zeep/__init__.py`
We have a type that looks like ``` ``` This means that we have a type which we need to access as: ```python myObject # type: problemType myObject.from ``` This...
has someone the same error about the xmlsec version ? 
Hello, I'm running Zeep 2.4.0 and I'm trying to send a mime attachment per the MTOM spec. I see that some work has been done to support this in the...
use zeep client, download wsdl file, and get the error below: 403 Client Error: Forbidden for url: http://schemas.xmlsoap.org/soap/encoding/ can anyone help me, thanks a lot
I don't know if this is an issue or a feature request, hope I'm in the right place :) Version of zeep : 4.1.0 The WSDL I'm using : https://gist.github.com/Lapin-Blanc/0e211650a91959082e819a831f07bc04...
The function Client.wsdl.dump() was modified to allow to put the print output to a file or other stream. To the function interface was add a default parameter _**output=sys.stdout**_ that keeps...
``` from requests import Session from zeep import Client, Settings from zeep.plugins import HistoryPlugin from zeep.transports import Transport session = Session() session.verify = True transport = Transport(session=session) history = HistoryPlugin()...
maybe simillar to https://github.com/mvantellingen/python-zeep/issues/392, my call returns a detail with the error (this is the debug xml) ``` zeep.transports: HTTP Post to https://testsdc2csolution.solutiondocondemand.com/Basic/RepositoryServiceAdmin.svc: http://tempuri.org/IRepositoryServiceAdmin/deleteLavorourn:uuid:c7b7cbdf-51e1-4958-89ad-1ec201aa10a0https://testsdc2csolution.solutiondocondemand.com/Basic/RepositoryServiceAdmin.svcXXXXXXXXX629782ea8d1ebd02dfaa5c3a zeep.transports: HTTP Response from https://testsdc2csolution.solutiondocondemand.com/Basic/RepositoryServiceAdmin.svc (status:...
Hi I would like to know if it is possible to use such header in zeep. ``` base64string = base64.encodebytes(('%s:%s' % (username,password)).encode()).decode().strip() authentication_header = { "WWW-Authenticate": "https://www.test.matrikkel.no", "Authorization": "Basic %s"...