From suds documentation, I can create a Client
if I have a url for the WSDL.
JavaScript
x
4
1
from suds.client import Client
2
url = 'http://localhost:7080/webservices/WebServiceTestBean?wsdl'
3
client = Client(url)
4
I currently have the WSDL file on my file system. Is it possible to use suds to read the WSDL file from my file system instead of hosting it on a web server?
Advertisement
Answer
try to use url='file:///path/to/file'