Reputation: 1
In my python program, I call a SOAP api via Zeep and Zeep Client.
My code works when I have internet connection but not offline. In fact, I have downloaded my WSDL and I am using the same code in local (without internet) but it's not working.
Does zip work offline?
If not, are there are other solutions? ( I can't install Suds )
Upvotes: 0
Views: 416
Reputation: 11
zeep version 0.11.0 -> Auto-load the http://schemas.xmlsoap.org/soap/encoding/ schema if it is referenced but not imported. Too many XSD's assume that the schema is always available.
pip install zeep==0.10.0
Upvotes: 1