vote up 1 vote down star

I'm asking in generalities - why would any server not set and return headers and/or status codes? I can't think of a good reason for this. Perhaps I'm overlooking something.

flag

Sorry Thomas, I'm a grammar nazi :) – Kev Oct 16 '08 at 18:30
More details needed. What client? Server? App framework? – Greg Hurlman Oct 16 '08 at 18:31
Greg - It doesn't matter. Any server. What would cause someone to prevent the server from returning a status code or header? – Thomas Owens Oct 16 '08 at 18:33

2 Answers

vote up 5 vote down check

The Status-Code is a required part of a HTTP Response.

By definition, the only reason for a server not to provide a Status-Line is that it is not a HTTP server.

RFC 2616, section 6: Response.

Or said in a slightly less pedant way: if it does this, the server is hopelessly buggy and you should run away from it screaming.

link|flag
Interesting...it appears that the PEAR HTTP classes do not proceed with an invalid security certificate...how they know that is beyond me, but I began checking the URLs that I'm looking at in a browser and so far, they all have an invalid certificate. – Thomas Owens Oct 16 '08 at 18:36
vote up 0 vote down

Status codes were introduced in HTTP/1.0 - prior to this, things were much simpler - there were no headers in the request or the response.

A request was simply like this, with no indication of the protocol version

GET /

The response would be all body, with no headers.

So it looks like you are talking to some kind of antique webserver which only speaks HTTP/0.9!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.