The getLastModified() method is used to return the time the HttpServletRequest object was last modified, in milliseconds since midnight January…
April 20th, 2010
What is the doDelet() method?
No Comments, SCWCD, by Daisy Williams.The doDelete() method allows a servlet to handle a DELETE request. It is called by the server via the service…
April 19th, 2010
What is the doPut() method?
No Comments, SCWCD, by Daisy Williams.The doPut() method allows a servlet to handle a PUT request. It is called by the server via the service…
March 27th, 2010
What is the difference between the GET and POST method?
No Comments, SCWCD, by Daisy Williams.The following table summarizes the differences between the Get and Post requests: Get Request Post Request Get is the default…
March 26th, 2010
What is the difference between POST request and PUT request?
No Comments, SCWCD, by Daisy Williams.The POST request is used to send the data to be processed. The PUT request is used to store a…
March 25th, 2010
What is the Head() method?
No Comments, SCWCD, by Daisy Williams.HEAD is a request method that is used when the client wants to see only the header information of a…
March 24th, 2010
What are the methods available in HTTP 1.1?
No Comments, SCWCD, by Daisy Williams.HTTP 1.1 defines eight request methods as follows: GET: It is the default request method. It retrieves the resource identified…
March 23rd, 2010
What is the GET method?
No Comments, SCWCD, by Daisy Williams.GET is the default method of an Http request. In this method, the request parameters are included in the URL…
February 26th, 2010
What is jsp:output?
No Comments, SCWCD, by Daisy Williams.The element is used to modify the XML declaration property of the output of a JSP document or tag file….
February 23rd, 2010
What is the request destroyed method?
No Comments, SCWCD, by Daisy Williams.The requestDestroyed() method of the ServletRequestListener interface takes a ServletRequestEvent object and notifies that the request is about to go…