InterviewSolution
| 1. |
From What Http Messages Are Made? |
|
Answer» HTTP messages are MADE of a header and a body. The body can often remain empty; it contains data that you want to transmit over the network, in order to use it ACCORDING to the instructions in the header. The header contains metadata, such as ENCODING information; but, in the case of a request, it also contains the important HTTP methods. In the REST STYLE, you will find that header data is often more significant than the body. HTTP messages are made of a header and a body. The body can often remain empty; it contains data that you want to transmit over the network, in order to use it according to the instructions in the header. The header contains metadata, such as encoding information; but, in the case of a request, it also contains the important HTTP methods. In the REST style, you will find that header data is often more significant than the body. |
|