How does a servlet differentiate between GET and POST requests?
- By request headers
- By session cookies
- By the request URL
- By the request body
A servlet differentiates between GET and POST requests by examining the request body. GET requests append data to the URL, while POST requests send data in the request body.
In a scenario where cookies are disabled, which session tracking technique can be employed?
- HTTP Session
- Hidden Form Fields
- IP Address Tracking
- URL Rewriting
URL Rewriting is a session tracking technique that can be employed when cookies are disabled. It involves appending session information to URLs.
If you need to set a custom header in an HTTP response, which HttpServletResponse method should you use?
- addHeader(String name, String value)
- appendHeader(String name, String value)
- setHeader(String name, String value)
- writeHeader(String name, String value)
To set a custom header in an HTTP response, you should use the setHeader(String name, String value) method of the HttpServletResponse interface.
Which interface provides the functionality to get initialization parameters in servlets?
- ServletConfig
- ServletContext
- ServletInitializer
- ServletParameters
The ServletConfig interface provides the functionality to get initialization parameters in servlets.
What is the default behavior of the service() method in the HttpServlet class?
- Forwarding the request to the init() method.
- Invoking the doGet() method.
- Invoking the doPost() method.
- Providing an HTTP 405 (Method Not Allowed) error.
The default behavior of the service() method in the HttpServlet class is to provide an HTTP 405 error (Method Not Allowed) response, indicating that the requested HTTP method is not supported.
What considerations should be made when handling large form data submissions in a servlet?
- Ensure the servlet has a large buffer size.
- Increase the maximum allowed request size.
- Use GET requests instead of POST requests.
- Use compression to reduce data size.
When handling large form data submissions in a servlet, considerations include increasing the maximum allowed request size, optimizing buffer sizes, and using compression to reduce data size.
The deployment descriptor file used to configure a servlet in a web application is named __________.
- servlet-config.xml
- web-app.xml
- web-config.xml
- web.xml
The deployment descriptor file used to configure a servlet in a web application is named web.xml.
What is the significance of the path attribute in a cookie?
- It defines the cookie's value
- It indicates the cookie's path
- It sets the cookie's domain
- It specifies the cookie's name
The path attribute in a cookie is significant as it indicates the URL path for which the cookie is valid. The client sends the cookie only if the path matches the requested URL.
In what scenario is it more appropriate to use RequestDispatcher over HttpServletResponse's sendRedirect?
- When maintaining the original URL is crucial
- When preserving client-side state is necessary
- When the resource is on a different server
- When the resource is on the same server
RequestDispatcher is more appropriate when you need to forward a request internally within the server, maintaining the original URL. This is especially important when you want to keep the original URL in the browser's address bar.
How does the servlet container handle HTTP headers when using RequestDispatcher's forward method?
- HTTP headers are discarded
- HTTP headers are duplicated
- HTTP headers are modified
- HTTP headers are preserved
When using RequestDispatcher's forward method, the servlet container discards the original response headers, allowing the forwarded resource to generate a new set of headers. This is important to avoid conflicts and ensure that the forwarded resource has control over the headers.