Saturday, May 22, 2021

What is HTTP Request and HTTP Response?

Ans: both are the interface and implementation provided by servlet server.ex:tomcat.when user want to send any request to a servlet ,he send HttpRequest and can attach data if want. user can send response like html from server to client using HttpResponse.


No comments:

Post a Comment

Clean code chapter 3(Robert C.martin)

  Summary: --------  1. Functions should hardly ever be 20 lines long.  2.Keep blocks (inside if, else, while, for, etc.) short.  Ideally, j...