InterviewSolution
| 1. |
What Is A Request Message? |
|
Answer» The request message CONSISTS of the following:
The request line and headers must all END with <CR><LF> (that is, a carriage RETURN FOLLOWED by a line feed). The empty line must consist of only <CR><LF> and no other whitespace. In the HTTP/1.1 protocol, all headers except Host are optional. A request line CONTAINING only the path name is accepted by servers to maintain compatibility with HTTP clients before the HTTP/1.0 specification in RFC1945. The request message consists of the following: The request line and headers must all end with <CR><LF> (that is, a carriage return followed by a line feed). The empty line must consist of only <CR><LF> and no other whitespace. In the HTTP/1.1 protocol, all headers except Host are optional. A request line containing only the path name is accepted by servers to maintain compatibility with HTTP clients before the HTTP/1.0 specification in RFC1945. |
|