HTTP Basics
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at HTTP Basics.
When writing an internet application, you often examine and add to the information in HTTP header. Return codes indicate the success or failure of the requested event. Several common return codes are listed in the following table.
Return Code | Meaning |
---|---|
200 | URL located, transmission follows |
400 | Unintelligible request |
404 | Requested URL not found |
405 | Server does not support requested method |
500 | Unknown server error |
503 | Service unavailable |
The HTTP responses are grouped as shown in the following table.
Group | Meaning |
---|---|
200–299 | Success |
300–399 | Information |
400–499 | Request error |
500–599 | Server error |
The Hypertext Transfer Protocol (HTTP) is an application-level protocol for hypermedia information systems. For more information about HTTP, and how Web browsers and servers communicate, see the Hypertext Transfer Protocol (HTTP) specification:
https://www.w3.org/pub/WWW/Protocols/