WEB Terminology

The basic characteristics of  HTTP:

1.It is the protocol that allows web servers and browsers to exchange data over the web.

2.It is a request response protocol.

3.It uses the reliable TCP connections by default on TCP port 80.

4.It is stateless means each request is considered as the new request. In other words, server doesn't recognize the user by default.

HTTP REQUESTS METHOD:

GET POST HEAD TRACE PUT DELETE OPTIONS

Anatomy of Get Request:

WEB Terminology_第1张图片

Some other features of GET requests are:

It remains in the browser history

It can be bookmarked

It can be cached

It have length restrictions

It should never be used when dealing with sensitive data

It should only be used for retrieving the data

Anatomy of Post Request


WEB Terminology_第2张图片

Some other features of POST requests are:

This requests cannot be bookmarked

This requests have no restrictions on length of data

This requests are never cached

This requests do not remains in the browser history

你可能感兴趣的:(WEB Terminology)