Java Basics of HTTP

Source: Internet
Author: User
Tags ssl connection apache tomcat

HTTP (hypertext Transfer Protocol) is a set of rules for computers to communicate over a network. Computer experts design HTTP to enable HTTP clients (such as Web browsers) to request information and services from an HTTP server (Web server). HTTP Current protocol version is 1.1.HTTP is a stateless protocol, stateless refers to the Web browser and the Web server does not need to establish a persistent connection, which means when a client makes a request to the server, and then the Web server returns a response (response), The connection is closed and information about the connection is not maintained on the server side. HTTP follows the request/answer (Response) model. The Web browser sends a request to the Web server, and the Web server processes the request and returns the appropriate answer. All HTTP connections are constructed as a set of requests and responses. HTTP uses content types, which are the types of files that the Web server returns to a Web browser. All of these types are modeled on the MIME Internet Mail protocol, where the Web server tells the Web browser what kind of file it has, whether it is an HTML document, a GIF format image, a sound file, or a standalone application. Most Web browsers have a series of configurable helper applications that tell the browser how to handle the various types of content that the Web server sends over. The HTTP communication mechanism is that during a complete HTTP communication, the following 7 steps will be completed between the Web browser and the Web server: (1)Establish a TCP connectionBefore HTTP work begins, the Web browser first establishes a connection to the Web server over the network, which is done through TCP, which works with the IP protocol to build the Internet, known as the TCP/IP protocol family, so the internet is also known as a TCP/IP network. HTTP is a higher level of application-level protocol than TCP, according to the rules, only the lower layer protocol is established before the connection can be more protocol, so the first to establish a TCP connection, the port number of the general TCP connection is 80 (2)Web browser sends request command to Web serverOnce a TCP connection is established, the Web browser sends a request command to the Web server for example: get/sample/hello.jsp http/1.1 (3)Web browser sends request header informationAfter the browser sends its request command, it also sends some other information to the Web server in the form of header information, and then the browser sends a blank line to notify the server that it has ended sending the header information. (4)Web Server AnswerAfter the client makes a request to the server, the server responds back to the client, and the first part of the http/1.1 is the protocol version number and the response status Code (5).Web server sends answer header informationJust as the client sends information about itself along with the request, the server also sends the user with the answer about its own data and the requested document. (6)Web server sends data to browserAfter the Web server sends a header message to the browser, it sends a blank line to indicate that the header information is sent to the end, and then it sends the actual data requested by the user in the format described in the Content-type reply header information (7)Web server shuts down TCP connectionIn general, once the Web server sends the request data to the browser, it closes the TCP connection, and then if the browser or server joins this line of code in its header, the CONNECTION:KEEP-ALIVETCP connection will remain open after the message is sent, The browser can continue to send requests through the same connection.    Maintaining a connection saves the time it takes to establish a new connection for each request and also saves network bandwidth. HTTP request format when the browser makes a request to the Web server, it passes a block of data to the server, which is the request information, and the HTTP request information consists of 3 parts: lRequest Method URI Protocol/versionLRequests Header (request header)LRequest BodyThe following is an example of an HTTP request: Get/sample.jsphttp/1.1accept:image/gif.image/jpeg,*/*accept-language:zh-cnconnection: keep-alivehost:localhostuser-agent:mozila/4.0 (compatible; MSIE5.01; Window NT5.0) accept-encoding:gzip,deflate username=jinqiao&password=1234 (1)Request Method URI Protocol/versionThe first line of the request is "method URL negotiation/version": get/sample.jsp http/1.1 the "GET" in the code above represents the request method, "/sample.jsp" represents the URI, "http/1.1 represents the version of the Protocol and Protocol. HTTP requests can use a variety of request methods, depending on the HTTP standard. For example: HTTP1.1 supports 7 methods of request: GET, POST, HEAD, OPTIONS, PUT, delete, and Tarce. In Internet applications, the most common method is get and post. The URL completely specifies the network resource to be accessed, usually with a relative directory relative to the root of the server, always beginning with a "/", and finally, the version of the Protocol that declares the use of HTTP during communication. (2) The request header request header contains many useful information about the client environment and the request body. For example, the request header can declare the language used by the browser, the length of the request body, and so on. accept:image/gif.image/jpeg.*/*accept-language:zh-cnconnection:keep-alivehost:localhostuser-agent:mozila/4.0 ( Compatible:msie5.01:windows NT5.0) accept-encoding:gzip,deflate. (3) There is a blank line between the request body request header and the request body, which is very important, which indicates that the request header has ended. Next is the request body. The request body can contain query string information submitted by the customer: username=jinqiao&password=1234 in the HTTP request for the example above, the body of the request has only one line of content. Of course, in real-world applications, the HTTP request body can contain more content. HTTP request method I only discuss get method with Post method LGet MethodThe Get method is the default HTTP request method, and we routinely use the Get method to submit form data, but the form data submitted with the Get method is simply encoded, and it is sent to the Web server as part of the URL, so If you use the Get method to submit form data, there is a security risk. For exampleHttp://127.0.0.1/login.jsp?Name=zhangshi&Age=30&Submit=%cc%E+%BD%BBFrom the URL request above, it is easy to identify what the form submits. (? ) In addition, the amount of data submitted cannot be too large because the data submitted by the Get method is part of the URL request.Post MethodThe Post method is an alternative to the Get method, which is primarily to submit form data to the Web server, especially large batches of data. The Post method overcomes some of the drawbacks of the Get method. When submitting form data through the Post method, the data is not sent as part of the URL request but as standard data to the Web server, which overcomes the drawback that the information in the Get method is not confidential and the amount of data is too small.  Therefore, for security reasons and respect for user privacy, the Post method is usually used for form submission. From a programmatic point of view, if a user submits data through a GET method, the data is stored in the QUERY_STRING environment variable, and the data submitted by the Post method can be obtained from the standard input stream. HTTP replies are similar to HTTP requests, and HTTP responses are made up of 3 parts, namely: L Protocol Status Version Code description L response Header (Response header) L response body Below is an example of an HTTP response: http/1.1 okserver: Apache tomcat/5.0.12date:mon,6oct2003 13:23:42 gmtcontent-length:112 . Lhttp Answer Code   An HTTP answer code, also known as a status code, reflects the state of the Web server processing HTTP requests. The HTTP answer code consists of 3 digits, with the first number defining the type of the answer code: the 1xx-Information Class (information), which indicates that a Web browser request is being received, the 2xx-Success Class (successful) is being further processed, indicating that the user request was received correctly, Understanding and Handling For example: the ok      3xx-redirect Class (redirection), which indicates that the request was unsuccessful and that the customer must take further action.       4xx-Client error, which indicates that the client submitted a request with an error such as: 404 not                                      Found means that the document referenced in the request does not exist.       5xx-Server errors (server error) means that the server cannot complete the processing of the request: 500      For our web developers, mastering HTTP answer codes can help improve the efficiency and accuracy of Web application debugging. One of the most common uses of   secure connection Web Apps is e-commerce, which allows people to shop online using Web server-side programs, and it's important to point out that by default, sending information over the Internet is unsafe, and if someone happens to intercept a message you've sent a friend, He can open it, imagine that there is a credit card number in it, how bad it can be, fortunately, many Web servers and Web browsers have the ability to create secure connections so that they can communicate securely. The most common standard for providing secure connections over the Internet is the Secure Sockets Layer (secure Sockets layer,ssl) protocol. The SSL protocol is an application-layer protocol (like HTTP) that is used to securely exchange data on the Web and SSL uses a public key-encoding system. In essence, this meansIt tastes like every party in the business has a public and a private key. When a party encodes a public key using the other party, only the person with the matching key can decode it. In short, public key encoding provides a secure way to exchange data between two parties, after the SSL connection is established, both the client and the server exchange the public key and validate it before the business contact, and once both keys are authenticated, the data can be exchanged securely.
    • Get resource by request URI
    • POST for adding new content
    • PUT is used to modify a content
    • Delete, remove a content
    • CONNECT for the agent to transfer, such as using SSL
    • Options asks which methods can be executed
    • PATCH, partial document changes
    • PROPFIND, (Wedav) View Properties
    • PROPPATCH, (WEDAV) setting properties
    • Mkcol, (WEDAV) Create collection (folder)
    • Copy, (WEDAV) copy
    • Move, (WEDAV) mobile
    • Lock, (WEDAV) plus lock
    • UNLOCK (WEDAV) unlocking
    • TRACE for Remote diagnostics server
    • HEAD is similar to get, but does not return body information to check if an object exists and to get the object's metadata
Apache2, you can use limit,limitexcept for access control. MethodIncluding: GET, POST, PUT, DELETE, CONNECT, OPTIONS, PATCH, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCKAnd UNLOCK. where the HEAD GET POST OPTIONS propfind is read-related Method, Mkcol PUT DELETE LOCK UNLOCK COPY MOVE proppatch is and modifies the associated Method

Java Basics of HTTP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.