python-zeep
python-zeep copied to clipboard
A Python SOAP client
Version: 2.4.0 I have developed a generic SOAP client interface capable of executing web service requests against different target systems. In addition to obtaining response from the server (which normally...
parse_xmlelement "" returns empty object not None
zeep == 4.2.1 - **wsdl url : http://www.dneonline.com/calculator.asmx?WSDL, opeartion name : SAOP1.1-Add** Traceback (most recent call last): File "D:\ICE_ENHANS\latest_ice_package\ICE\plugins\WebServices\wsdlgenerator.py", line 118, in requestHeader request_header_soap11 = self.client_obj.service._binding.create_message_header(self.operation_name) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "D:\ICE_ENHANS\latest_ice_package\ICE\Lib\site-packages\zeep\wsdl\bindings\soap.py", line...
This pull request adds support for TTLCache to zeep. TTLCache is a Least Recently Used (LRU) cache implementation with per-item time-to-live (TTL) value. This means that it will clear the...
I bumped into this when opening several wsdl which in turn opened lots of xsd, with 'file://' scheme. The issue was that the `resp.raw.close` nor `resp.raw.release_conn` set in the `FileAdapter`...
Hi All. I have some problems on loading a WSDL. WSDL reference two schema: ` ` Schema1.xsd include another XSD: ` ` I have two kind of problem: 1 -...
This pull request is intended to fix issue with AsyncClient.create_service, which returns a service that can`t be used (mentioned in issue #1168 There also is PR #1202 solving the same...
### Info 1. zeep version: `4.2.1` (but the issues occurs with version 4.0.0 too) 2. To reproduce this issue, just create a file `zeep_problem.py` with e.g. this import `from zeep.exceptions...
Hi team, I was trying to make soap call to fusion cloud, when i was trying to establish client its getting time out so i have saved the wsdl in...
There is an issue when the WSDL consists of multiple nested complex types and expects an "any" input, and you attempt to provide the input as an `etree._Element` object. On...