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

1. Zeep Version 4.2.1 (Python 3.11.2) 2. [The WSDL you are using](https://raw.githubusercontent.com/gematik/epa-ps-sim/main/epa-fm-java-api/src/main/resources/schemas/conn/phrs/PHRService_V2_0_1.wsdl) 3. And most importantly, a [runnable example script](http://docs.python-zeep.org/en/master/reporting_bugs.html) which exposes the problem. Hello, I know the issue looks...

I'm struggling with the same problem as Vasireddydivya reported [here](https://github.com/mvantellingen/python-zeep/issues/229) while trying to access a legacy IBM FileNet server. WSDL is available here: https://github.com/mulesoft/mule-wsdl-parser/blob/master/src/test/resources/wsdl/multiple-imports-as-value/multiple-imports-base.wsdl https://github.com/mulesoft/mule-wsdl-parser/blob/master/src/test/resources/wsdl/multiple-imports-as-value/multiple-detailed.wsdl I am using version 2.5.0...

Thank you for looking at this support request. I have looked at many Github open issues and the docs and cannot find any mention of whether passing CDATA flag to...

Is it possible to directly access the request (python `requests`) object for low level HTTP handling? I am writing a logger plugin and wanted to also log raw HTTP-related things,...

Hi, I'm having troubles to send request with this kind of input message: With type definition: Calling the service: response = client.service.Call(message) Where the message is type of string. How...

Any defaults to min_occurs=1, pass min_occurs=0 to allow empty arrays.

I am using httpx for asynchronous and SSL protected requests to an SOAP server. ```python httpx_ssl_verify = httpx.create_ssl_context(verify="cert.pem") httpx_client = httpx.AsyncClient(auth=(user, password), verify=httpx_ssl_verify, timeout=15) ``` An example for the request...

help wanted

Fixes: https://github.com/mvantellingen/python-zeep/issues/1402

Sometimes it's useful to have the tests that use the network marked so they can be skipped easily when we know the network is not available. This is useful for...

Zeep uses isodate to parse `xsd:time`: https://github.com/mvantellingen/python-zeep/blob/377d9313b1b4807a31a5ee42227f1dc7e7e0471e/src/zeep/xsd/types/builtins.py#L197-L198 `isodate` does not like `24:00:00` and throws `ValueError: hour must be in 0..23`, but `24:00:00` should be a valid value of `xsd:time`: http://www.datypic.com/sc/xsd/t-xsd_time.html...

help wanted