HTTPSConnection & Password

2005-08-02 Thread michaelparkin
Hi, I'm using httplib to create a mutually authenticated HTTPS connection with a server. I create the connection as follows: c = httplib.HTTPSConnection(uri, key_file = key, cert_file = cert) However, because I am using a private key I keep getting asked to enter the password to open that key e

Re: httplib/HTTPS Post Problem

2005-07-22 Thread michaelparkin
Thanks for the replies, Andreas and Peter. Andreas Kostyrka wrote: > Just a curious guess: Are you behind a proxy? If so, it's a known and > never fixed bug from Python 1.5 times ;) No, I'm not behind a proxy - the server is on the same PC as my client (while I'm testing!). > You might also t

httplib/HTTPS Post Problem

2005-07-11 Thread michaelparkin
Hi, Sorry to post what might seem like a trivial problem here, but its driving me mad! I have a simple https client that uses httplib to post data to a web server. When I post over http & https using curl the data is recieved by the web server with no problems. When I post using my python clien