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

A Python SOAP client

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

I'm trying to perform HTTP authentication with AsyncTransport using the following code: `session = Session()` `session.auth = HTTPBasicAuth(user, password)` `transport = AsyncTransport(session=session, cache=None)` `client = AsyncClient('http://my-endpoint.com/production.svc?wsdl', transport=transport)` But it returns...

Been using zeep in production for a few months now, and it's going very well, communicating with two different SOAP APIs in the company. We've had an odd issue with...

I'm using zeep 4.0.0 And signing soap using: sign = BinarySignature('/etc/pki/tls/certs/xxxx.pem', '/etc/pki/tls/certs/xxxx.pem') session = Session() session.cert = '/etc/pki/tls/certs/xxxx.pem' transport = Transport(session=session) client = Client('http://192.168.62.125/init_main.wsdl', wsse=sign, transport=transport) ... ... service.test() At...

I'm having the isse that i get a base64 encoded file as response from a request, zeep converts this to a binary string e.g. b'%PDF-1.4\n%\xe2\xe3\xcf\xd3\n4.......' is there a way to...

No idea what is happening, I passed in the dict just as the wsdl.dump() specified, keeping getting the typeError The version of zeep : v4.0.0 The WSDL you are using:...

Hi, I need to get the XML representation of instances of (nested) complex types. I get to the point of creating the relevant objects: ```python from zeep import Client client...

While casting to string I get the AttributeError "type object 'UnresolvedType' has no attribute 'is_global'". It is easy to provoke: ```python from zeep.xsd.types.unresolved import UnresolvedType from zeep.xsd.elements.element import Element t...

1) Name: zeep Version: 4.0.0 2) ArcSight ESM SOAP API 3) [https://gist.github.com/freenetwork/5bc84d98fc85067c83b27408942127e6](WDSL). After the Client is created, I get the following error ` File "src\lxml\etree.pyx", line 1831, in lxml.etree.QName.__init__ File...

Definition from one of the Oracle systems: ```xml ``` Recived response: ```xml ... 2022-04-18T08:00:00.000Z 2026-11-20T17:00:00.000Z 1200.0 0.0 ... ... ``` Is parsed to: ```python 'agileObject': { 'objectIdentifier': { ... },...