If I do this:
---------------------
url = "https://...."
client = suds.client.Client(url)
---------------------
Will the data be encrypted as it travels over the internet or do I need to do something different in SUDs?
I want to thank the developers for a great tool. This is my first experience with SOAP and it has been a really short learning curve.
Brian
On Monday, August 29, 2011, brian downing elucidated thus:
If I do this:
url = "https://...."
client = suds.client.Client(url)
Will the data be encrypted as it travels over the internet or do I need to do something different in SUDs?
I want to thank the developers for a great tool. This is my first experience with SOAP and it has been a really short learning curve.
Where Suds gets the WSDL file doesn't (usually) have anything to do with where it sends the data. The WDSL file usually have the end point in it, and thus determines if the end point is HTTPS or not.
j