0
votes
Python accessing web service protected by PKI/SSL
The suggestion by stribika using httplib.HTTPSConnection should work for you provided that you do not need to verify the server's certificate. If you do want/need to verify the server, …
1
vote
how can I get the file version on the Internet but not download it ?
If your purpose is to detect when a new version becomes available, you could look at the response of a HEAD HTTP request as others have suggested.
Otherwise, you could screen scrape the ( …
1
vote
How to display outcoming and incoming SOAP message for ZSI.ServiceProxy in Python?
Here is some documentation on the ServiceProxy class. The constructor accepts a tracefile …
