HTTP – Status Codes
In this guide, we will discuss Status codes in HTTP. The Status-Code element in a server response, is a 3-digit integer where the first digit of the Status-Code defines the…
In this guide, we will discuss Status codes in HTTP. The Status-Code element in a server response, is a 3-digit integer where the first digit of the Status-Code defines the…
In this guide, we will discuss Methods in HTTP. The set of common methods for HTTP/1.1 is defined below and this set can be expanded based on requirements. These method…
In this guide, we will discuss Responses in HTTP. After receiving and interpreting a request message, a server responds with an HTTP response message: A Status-line Zero or more header…
In this guide, we will discuss Requests in HTTP. An HTTP client sends an HTTP request to a server in the form of a request message which includes following format:…
In this guide, we will discuss Messages in HTTP. HTTP is based on the client-server architecture model and a stateless request/response protocol that operates by exchanging messages across a reliable…
In this Chapter, we will discuss Parameters in HTTP. This chapter is going to list down few of the important HTTP Protocol Parameters and their syntax the way they are…
The Hypertext Transfer Protocol (HTTP) is an application-level protocol for distributed, collaborative, hypermedia information systems. This is the foundation for data communication for the World Wide Web (i.e. internet) since…
In this guide, we will discuss Exception Handling in Kotlin. Exception handling is a very important part of a programming language. This technique restricts our application from generating the wrong…
In this guide, we will discuss Destructuring declarations in Kotlin. Kotlin contains many features of other programming languages. It allows you to declare multiple variables at once. This technique is…
In this guide, we will discuss Delegation in Kotlin. Kotlin supports “delegation” design pattern by introducing a new keyword “by”. Using this keyword or delegation methodology, Kotlin allows the derived class to access…