How Can I Consume Wsdl Url In Python
I want to consume data from WSDL url, I don't know how would I do in python. Can anyone help me with the example here is the WSDL link for reference : http://43.242.214.173/cwplser
Solution 1:
Did you looked into PySimpleSOAP? I've used it, it is pretty good for making SOAP calls and parsing small size XML responses. For very large XML message responses it has crashed on me, ended up writing my own XML handler using xml.etree.ElemenTree.
Post a Comment for "How Can I Consume Wsdl Url In Python"