Tagged Questions

7
votes
4answers
25k views

104, 'Connection reset by peer' socket error, or When does closing a socket result in a RST rather than FIN?

We're developing a Python web service and a client web site in parallel. When we make an HTTP request from the client to the service, one call consistently raises a socket.error in socket.py, in ...
6
votes
2answers
1k views

Is Twisted an httplib2/socket replacement?

Many python libraries, even recently written ones, use httplib2 or the socket interface to perform networking tasks. Those are obviously easier to code on than Twisted due to their blocking nature, ...
0
votes
2answers
157 views

Error opening ssl connection using httplib2

I am using httplib2 for opening up an ssl connection. Following is the code. import httplib2 if __name__=='__main__': conn = httplib2.Http(disable_ssl_certificate_validation=True) ...