Hello,
I am new to the Cisco Community, but could not find much on the WAAS API using Python. I am using the suds modular from fedora which I've used with other SOAP APIs with great success. Using suds I cant even load the wsdl and receive
suds.TypeNotFound: Type not found: '(IOException, http://io.java/xsd, )' which seems like a borken schemas too me.
from suds.client import Client
url = 'https://wass.device:443/ws/CIFSStats?wsdl'
client = Client(url, username=' ', password=' ')
print client
exit()
I tried using the Doctor Class within SUDs in attempt to fix the issue with no results.