Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

33
votes
6answers
11k views

HTTP 1.0 vs 1.1

Could somebody give me a brief overview of the differences between HTTP 1.0 and HTTP 1.1? I've spent some time with both of the RFCs, but haven't been able to pull out a lot of difference between ...
3
votes
1answer
137 views

How do I find out the version of HTTP in a request using PHP and Apache

I need to determine whether an HTTP request was an HTTP/1.0 or an HTTP/1.1 request in my PHP script, which is running under Apache. Is there a way to query this information?
2
votes
1answer
113 views

Why is Connection: keep-alive still being specified in http headers (isn't it deprecated)?

According to "HTTP: The Definitive Guide", using Connection: keep-alive to specify a persistent connection is deprecated in HTTP/1.1, since HTTP/1.1 specifies that connections are persistent by ...
2
votes
2answers
138 views

Is using HTTP 1.0 bad practice?

I'm implementing a basic http client for communicating with a web service and am wondering if I should go with http 1.0 or 1.1. The data section will consist of binary data and the remote server will ...
0
votes
0answers
45 views

Is there any module or function as apache's force-response-1.0?

Sorry for my foolish.I use nginx HttpProxyModule for my project, and we must use HTTP/1.0 to the browser.and i know apache has the function list this: <Location /buggyappserver/> ProxyPass ...
0
votes
1answer
58 views

How to implement HTTP 1.0 / 1.1 in ASP.NET

I wanted to know the best way to implement the following in ASP.NET. I have never used these directives so if you could kindly give me a sample code, It would be really helpful. HTTP/1.0 Pragma ...