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

Hey, Thanks for maintaining Zeep! I was going over https://github.com/mvantellingen/python-zeep/blob/c7d916cbac8817ba4be81751ee590c6fe52b3f8a/src/zeep/wsdl/bindings/soap.py#L228 and saw Zeep fails when the server responds with something other than 200 for a successful response (e.g. 201). That...

When using `zeep.AsyncClient()` how should it be cleaned up on exit? ``` history_plugin = HistoryPlugin() wsdl = os.environ.get("mywsdl") settings = Settings(strict=False, xml_huge_tree=True) client = zeep.AsyncClient(wsdl, settings=settings, plugins=[history_plugin]) ``` When the...

the `session` param is not used. https://github.com/mvantellingen/python-zeep/blob/4e16b7726b5027e83d0dbe911bd45f153b7a09dc/src/zeep/transports.py#L173 I'm using Api key on `session` header, it would be nice to be used in the following init lines. ``` self.wsdl_client.headers = {...

Hi! zeep 4.0.0. I'm testing zeep against [http://www.sigecweb.beniculturali.it/webServiceBrowsingCards?wsdl](url). It has a security policy. Note: download the wdsl locally because of a wrong address inside, replace 10.96.1.85:8180 with sigecweb.beniculturali.it (so you've:...

Hi, first of all, thanks for this package I've found very easy to use and usefull. A suggestion (easy to implement), more than a bug report: - call ingress plugins...

Hi, Disclaimer: I'm new to Zeep and to SOAP in general. This being said, I'm trying to consume Sympa's SOAP API using Zeep 4.1.0. It's a private Sympa instance so...

Hello guys ! I have a problem using functions with arguments on library. When i'm putting arguments on function, it doesn't work, i don't really know if i'm doing right...

**Zeep version : 4.0.0 Python: 3.9.1 OS: Linux kali 5.9.0 x86_64 GNU/Linux WSDL used: http://www.onvif.org/ver10/events/wsdl/event.wsdl** I am trying to use Zeep with ONVIF camera to get alarms via **PullPointSubscription** and...

Version: zeep 4.0.0 WSDL: 'http://www.dataaccess.com/webservicesserver/numberconversion.wso?WSDL' Hi guys, i am starting developing a soap interface based on zeep. Our application works mostly async, so I try to use the AsyncClient. Additional...