Reputation: 3
I'm trying to use ZEEP v1.2.0 to connect to some service and ran into this issue.
I just execute: python -mzeep http://fulfill.sfcservice.com/default/svc/wsdl
Result:
zeep.exceptions.LookupError: No type 'string' in namespace
http://www.chinafulfill.com/CffSvc/. Available types are: [...]
Am I missing anything here to test this?
Upvotes: 0
Views: 1440
Reputation: 1259
No this is a bug in the WSDL file, It defines an element with type "tns:string", I assume they meant "xsd:string".
See the following line in the wsdl:
Upvotes: 1