InterviewSolution
Saved Bookmarks
| 1. |
What Are The Objects That Are Received When A Servlets Accepts Call From Client? |
|
Answer» The objects are ServeltRequest and ServletResponse . The ServeltRequest ENCAPSULATES thecommunication from the CLIENT to the SERVER. While ServletResponse encapsulates the COMMUNICATION from the Servlet BACK to the client. The objects are ServeltRequest and ServletResponse . The ServeltRequest encapsulates thecommunication from the client to the server. While ServletResponse encapsulates the communication from the Servlet back to the client. |
|