python-zeep
python-zeep copied to clipboard
A Python SOAP client
1. The version of zeep (or if you are running master the commit hash/date) 4.0.0 2. The WSDL you are using Local WSDL file, can be downloaded with all XSDs...
Version: zeep 2.5.0 WDSL: https://www.migrationwiz.com/API/2.0/WebService.asmx?wsdl Script: ``` import pretend # pip install pretend from zeep import Client from zeep.transports import Transport client = Client('https://www.migrationwiz.com/API/2.0/WebService.asmx?wsdl') response = pretend.stub( status_code=200, headers={'Cache-Control': 'private,...
There is a data schema describing the response from the service test.xsd.txt [test.xsd.txt](https://github.com/mvantellingen/python-zeep/files/7250549/test.xsd.txt) When parsing a response from the service, zeep returns an error: "Unexpected element '. The error is...
When you pass a wsse as a list to the client, like this: client = Client(wsdl=url, transport=transport, wsse=[self.user_name_token]) or client = Client(wsdl=url, transport=transport, wsse=[self.user_name_token, self.signature]) You get an error in...
As requested in #658 : a failing test.
xsd part is: ``` ``` fails on function [visit_restriction_simple_type](https://github.com/mvantellingen/python-zeep/blob/4e16b7726b5027e83d0dbe911bd45f153b7a09dc/src/zeep/xsd/visitor.py#L698) because there is no children. ``` Traceback (most recent call last): File "", line 1, in File "/home/eri/.local/lib/python3.9/site-packages/zeep/client.py", line 73, in...
Hi, I'm using Zeep 4.10 that found a bug(I think) The WSDL is from the zeep docs : http://www.soapclient.com/xml/soapresponder.wsdl here is my script ```python import time from datetime import datetime...
Fix + added test case for issue #1255
When trying to parse a sequence that contains more than one choice, each with a maxOccurs > 1, zeep fails to parse valid xml. The error message tells you that...