Search Results

-1
votes

Why does Apache return a 503 error for ant’s get task, but not for my browser?

The HTTP request might be going through a proxy which is rejecting the request. Alternatively ant might not be using a proxy where it should. …
0
votes

HTTP compliance testing

Take a look here: http://www.measurement-factory.com/ The Co-Advisor product might be what you are after. Note that this is …
1
vote

non-blocking read/log from an http stream

Another option is to use the socket module directly. Establish a connection, send the HTTP request, set the socket to non-blocking mode, and then read the data with socket.recv() …
1
vote

Why am I getting this error in python ? (httplib)

Are you using a proxy? If so, perhaps the proxy server is rejecting HEAD requests. Do you get the same problem if you issue a GET request? If GET …