Tuesday, December 14, 2021

HTTP response code

Server sends http response code with http response header.
Every response code has individual meaning .
let see some of the status code-

100-199 ----Informational
200-299-----Successful
300-399-----Redirection
400-499-----Client error (ex-404 file not found)
500-599-----Internal server error(ex-500 internal server error)

No comments:

Post a Comment

Fluent interface pattern

 public class UserConfigurationManager {     private String userName;     private String password;     private UserConfigurationManager() { ...