The best HTTP Profile Tutorial In 2024, In this tutorial you can learn HTTP works,

HTTP Profile

HTTP protocol is the Hyper Text Transfer Protocol (Hypertext Transfer Protocol) acronym is used from the World Wide Web (WWW: World Wide Web) server to transfer hypertext transfer protocol local browser. .

HTTP is a TCP / IP based communication protocol to transfer data (HTML files, image files, query results, etc.).


HTTP works

HTTP protocol works on client - server architecture on. HTTP browser as a client through the URL that is WEB server sends all HTTP requests to the server.

Web server has: Apache Server, IIS server (Internet Information Services) and the like.

According to the Web server after receiving the request, the client sends a response message.

HTTP default port number is 80, but you can also be changed to 8080 or other ports.

HTTP Three things to note:

  • HTTP is connectionless: no connection means is to limit each connection handles only one request. After the server processes the request of customers, and customers received the response, the connection is disconnected. In this way it can save transmission time.
  • HTTP is the independence of the media: this means that, as long as the client and the server knows how to handle the data content of any type of data can be sent via HTTP. Client and server specify the appropriate MIME-type content type.
  • HTTP is a stateless: HTTP protocol is a stateless protocol. Stateless means that no protocol for transaction processing and memory. Lack of state means that if the subsequent processing requires previous information, it must be retransmitted, which may result in the amount of data transfer each connection increases. On the other hand, the server does not require prior information on its response faster.

The following chart shows the HTTP protocol communication flow:

cgiarch

HTTP Profile
10/30