April 2002
Beginner to intermediate
1128 pages
26h 33m
English
| Q1: | What are the two main HTTP methods used to send requests to a Web server? What is the main difference between them? Which should I use to send sensitive information to the server? |
| A1: | The two main methods are GET and POST. GET adds any request parameters to the URL query string, whereas POST sends its parameters as part of the request body. It is for this reason that you should use POST to send sensitive information. |
| Q2: | What are the main uses for a ServletContext object? |
| A2: | The main uses are to set and store attributes, log events, obtain URL references to resources, and get the MIME type of files. |
| Q3: | What are the names of the methods I must implement to handle HTTP GET and POST requests? |
| A3: | The methods are doGet() and doPost(). |
| Q4: | What ... |
Read now
Unlock full access