A RFC entitled "Hypertext Transfer Protocol -- HTTP/1.1"

learn more… | top users | synonyms

0
votes
2answers
39 views

Are URIs case-insensitive?

When comparing two URIs to decide if they match or not, a client SHOULD use a case-sensitive octet-by-octet comparison of the entire URIs, with these exceptions: I read above Sentence in ...
3
votes
1answer
214 views

“no-cache” ​vs “max-age=0, must-revalidate, proxy-revalidate”

What's the​ difference between Cache-Control: no-cache and Cache-Control: max-age=0, must-revalidate, proxy-revalidate?
0
votes
0answers
48 views

Does disallowing some concurrent GET requests violate RFC 2616 (safety/idempotency)?

I'm currently debating the question on wether disallowing concurrent GET requests on a given resource constitutes a violation of RFC 2616 (especially the idempotency and safety properties required for ...
1
vote
1answer
82 views

Hyperlinks in the body of a 303 response

When doing 303 redirects after a POST, RFC 2616 mentions adding a hyperlink in the body of the response (i.e. the POST's 303 response body, not the response of the subsequent GET on newly created ...
0
votes
1answer
53 views

Reading http packets under linux

I'm reading RFC 2616 and I would like to see all http packets. Which tool is the best for this?
0
votes
0answers
211 views

HTTP Request Headers: What does/should happen to X-Forwarded-For on multiple-proxy paths?

First: I am sure this is an RTFM. I just don't know which M! Thanks. I have been reading RFC 2616 (among others) and have a question about what happens to the non-standard X-Forwarded-For header if ...
4
votes
1answer
65 views

'Most conservative' conversion to GMT?

Section 19.3 "Tolerant Applications" of the HTTP 1.1 RFC (2616) says on the subject of parsing dates from HTTP client applications: If an HTTP header incorrectly carries a date value with a time ...
2
votes
1answer
174 views

Embedded HTTPS server. How should redirection be handled, and should I offer HTTP?

Background I have implemented a HTTPS server which sits inside a piece of hardware for the purpose of secure remote configuration of the device. To achieve this, I have used an existing lightweight ...
1
vote
1answer
119 views

RFC2616 13.3, Browser History and Caching

I've been trying to get my head around the whole issue of browser history Vs caching and RFC2616 13.13 Does this section of the RFC mean that if a user goes "Back" in the browser, for example, it ...
0
votes
1answer
30 views

Does an HTTP redirect need a complete URL?

For an http redirection, say a 302, is it mandatory to return the full url of the new page, including http:// or is it possible to only send a relative address to the root url, like /my/view ? I ...
0
votes
1answer
206 views

Why is the System.Web.Mvc.HttpVerbs class missing TRACE, CONNECT & OPTIONS?

The RFC 2616 HTTP/1.1 definition states that the following common HTTP methods exist: GET, HEAD, POST, PUT, DELETE, TRACE, OPTIONS, CONNECT But the System.Web.Mvc.HttpVerbs enum is missing TRACE, ...
1
vote
1answer
248 views

Can I separate ALL HTTP headers with a comma? Even Authorization?

I am reading through the HTTP 1.1 RFCs and I am not able to answer the following question. We have this header: Authorization: Basic Qmxvb21iZXJnOnRjbG1lU1JT, Basic which is causing troubles ...
0
votes
4answers
473 views

HTTP Error 202 - Accepted

I have developed a REST application and one of my application's case is that: User makes an operation at server side. Everything goes well server accepts data correctly however some error occurs as ...
1
vote
1answer
131 views

How to do a standard conform GET query in HTTP1.1

In shord: How is in a HTTP1.1 standard conformant way to rfc2616 a GET query to an URL like http://example.com/?query Wikipedia says GET /?query HTTP/1.1 ... In the rfc2616 it says Request-URI ...
2
votes
0answers
561 views

Use of Accept-charset HTTP header

What are the differences and advantages of using one over the other: Accept: application/json;charset=utf-8 versus: Accept: application/json Accept-Charset: utf-8 Is the first form compliant to ...
1
vote
1answer
123 views

what is the exact syntax and semantics of a quoted string in the http1.1 rfc2616

In the rfc2616 which is the http1.1 standard, a quoted string is defined as follows. quoted-string = ( <"> *(qdtext | quoted-pair ) <"> ) uoted-pair = "\" CHAR CHAR = ...
2
votes
1answer
480 views

Error code for an invalid POST parameter

What's the proper error code to return when a POST request has an invalid parameter? Say: a form takes data for an event, but the date provided is in the past; or a form takes data for a user ...
0
votes
2answers
2k views

What is the maximum chunk size in HTTP response with Transfer-Encoding chunked?

The w3.org (RFC2616) seems not to define a maximum size for chunks. But without a maximum chunk-size there is no space for the chunk-extension. There must be a maximum chunk-size, else I can't ignore ...
1
vote
1answer
1k views

How to specify DELETE method in a link or form?

Rfc2616 lists many methods besides GET and POST, like, say, DELETE, PUT etc. Method field in html forms, though, seems to be allowed to specify only GET or POST. Is it possible to create a link or ...
1
vote
2answers
273 views

Is it correct to return a 502 status code when it's my proxy that has an internal error?

I've written a small proxy, and I'm wondering if it's correct for me to return a 502 Bad Gateway error when the proxy server itself has an internal error. The RFC seem to say that this is something ...
0
votes
1answer
988 views

Http-Server How to Create Request-Headers and response-Headers

SOS SOS SOS PLEASE!!! I have created a primitive HttpServer in java which listens on port 80 and Uses Get method to open a file etc (127.0.0.1/index.html). ow i want create request headers ...
0
votes
4answers
2k views

Cache-control: private and public

What should a http client do if server returned Cache-Control: private, public ? I have a feeling private should override public, but I can't find a confirmation in the RFC (other than MUST in ...
2
votes
2answers
75 views

Is there ever any reason to respond with “Vary: *” and “Vary: Foo” for the same resource?

Is there any reason for a HTTP server to sometimes respond with Vary: *, and sometimes with Vary: Foo, to requests for the same resource? What should a cache do, if after receiving (and caching) ...
6
votes
3answers
2k views

HTTP 1.1 Pipelining

I have to implement an HTTP client in Java and for my needs it seems that the most efficient way to do it, is implement HTTP pipeline (as per RFC2616). As an aside, I want to pipeline POSTs. (Also I ...
2
votes
2answers
1k views

HTTP: What is the preferred Accept-Encoding for “gzip,deflate”?

This question is regarding the order of precedence for the media-types of the HTTP Header "Accept-Encoding" when all are of equal weight and has been prompted by this comment on my blog. Background: ...
2
votes
1answer
1k views

Parsing every part of an HTTP header field-value

I'm parsing HTTP data directly from packets (either TCP reconstructed or not, you can assume it is). I'm looking for the best way to parse HTTP as accurately as possible. The main issue here is the ...
2
votes
1answer
443 views

Correct syntax of a HTTP 100 Continue response

For me, one of the weakest points of the HTTP 1.1 RFC and the various implementations around is how to deal with 100 Continue headers. I searched on the web for a while and had a look at different ...
1
vote
1answer
812 views

Win32: What is the status of chunked encoding support in WinHttpReadData?

The documentation for WinHttpReadData says, regarding HTTP's chunked transfer coding: Starting in Windows Vista and Windows Server 2008, WinHttp enables applications to perform chunked transfer ...
7
votes
6answers
583 views

For HTTP responses with Content-Types suggesting character data, which charset should be assumed by the client if none is specified?

If no charset parameter is specified in the Content-Type header, RFC2616 section 3.7.1 seems to imply ISO8859-1 should be assumed for media types of subtype "text": When no explicit charset ...
3
votes
1answer
334 views

Is an HTTP application that sends a Content-Length or Transfer-Encoding with a 204 No Content response broken?

I can't tell from RFC 2616 whether an HTTP client should accept a 204 No Content response that includes Content-Length: 0 or Transfer-Encoding: chunked headers. These headers seem to break some HTTP ...