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

Hi! I'm a total beginner with SOAP requests, especially... with SOAP requests to a resource in 'latin-1' encoding. The thing is, I have an "1C" database which initial encoding is...

Looking for wsdl's and endpoints to test against. Resources: - https://www.codeproject.com/Articles/36396/Difference-between-BasicHttpBinding-and-WsHttpBind - https://msdn.microsoft.com/en-us/library/ms951257.aspx - http://stackoverflow.com/questions/2650785/basichttpbinding-vs-wshttpbinding-vs-webhttpbinding

enhancement

Hi!! zeep version 4.1.0 I am trying to add security headers exactly BinarySecurityToken and to be able to sign the headers of the worst adressing when using the BinarySignature plugin...

How to view request body with headers? to see what is wrong with requests? And how to vie full response body? Like in SOAPUI

ZEEP 4.1.0 Python 3.9.7 Hi, Thanks in advance for the support. I have a problem with invoking a service that has a base64 element as its element. The "stream" parameter...

Hey all, i'm trying to send SOAP messages to a server that requires x509 certificates. I've got private and public keys and a keystore generated using keytool. I have the...

There is a parsing issue if an operation output/input does not have direct children soap:body or soap:header elements. Here is a sample zipped WSDL file attached where a getWsdl-operation have...

zeep 4.1.0 WSDL: https://opcfoundation.org/XMLDA/1.0/OpcXmlDa1.00.wsdl ```python transport = AsyncTransport(client=httpx_client) client = AsyncClient(WSDL, transport=transport) svc = self.client.create_service(list(client.wsdl.bindings.keys())[0], url) ``` See `zeep/client.py:139`: ```python def create_service(self, binding_name, address): ... return ServiceProxy(self, binding, address=address) ......

## Issue When there is no body element in the response, zeep is throwing an `IndexError` because there is eventually 0 `xmlelement`. ## Changes Made Added check for the not...

I'm receiving the error: `zeep.exceptions.XMLParseError: Unexpected element '{urn:JobService}actions'` When I try to load the results of calling this webservice using zeep. - Zeep version: 4.1.0 - My WSDL URL (wsdl...