Servlet

 The browser is the piece of software (like Netscape or Mozilla) that knows how to communicate with the server. Client is the browser app doing what the user asked it to do.

HTML tells the browser how to display content to the user. 

HTTP is the protocol clients and servers use on the web to communicate. The server use HTTP to send HTML to the client.

TCP is responsible for making sure that a file sent from one network node to another ends up as a complete file at the destination, even though the file is split into chunks when it's sent. IP is the underlying protocol that moves/routes the chunks (packets) from one host to another on their way to the destionation. HTTP , then is another network protocol that has Web-specific features, but it depends on TCP/IP to get the complete request and response from one place to another. The stucture of an HTTP conversation is a simple Request/Response sequence. 

Комментарии

Популярные сообщения из этого блога

Lesson1: JDK, JVM, JRE

SE_21_Lesson_11: Inheritance, Polymorphism

SE_21_Lesson_9: Initialization Blocks, Wrapper types, String class