HTTPSConnection Problems

John Glista jsplice at hotmail.com
Thu Feb 5 17:35:57 EST 2004


Hello.  I'm having a bit of a problem with the HTTPSConnection class. 
It is part of the httplib module.  I discovered that it is not
neccessary to specifiy a key and a certificate when opening an HTTPS
connection.  I tested this with several sites, and successfully opened
https connections with them.  However, I'm having problems with the
server I'm trying to connect to.  It is a Novell Bordermanager server
that tunnels all Internet traffic here at my college.  When first
accessing the web through mozilla, the Bordermanager server doesn't
see you as being authenticated, so it redirects you to a web login
page.  Utlimately what I would like to do is have my python script
submit the CGI form with my username and password so I don't have to
type this in everytime.  However, I'm having problems using the
HTTPSConnection class to connect to it.  If I don't give it a key and
cert file i get the following error: socket.error: (104, 'Connection
reset by peer')....so it appears the sever doesn't want  me to
connect.  I did a port scan on the server to ensure that it was using
the default https port, and it is.  What I don't understand is why the
HTTPSConnection is asking for a private key.  The private key resides
on the server; clients do not have access to this.  Clients use the
public key to decrypt the certificate.  I tried creating a public key
file by looking at it in the certificate properties in mozilla, but
python still complians that it wants a private key.  I do not have
access to the key.  I do have the certificate, which i saved using IE
and used openssl to convert it to a PEM formated file (this is what
HTTPSConnection says it needs).  Can anyone offer any help here?



More information about the Python-list mailing list