Home Servlets Send a Response Status in servlet



Send a Response Status in servlet
Posted on: July 17, 2008 at 12:00 AM
All Response status is defined in HttpServletResponse Class. You can then use constants (response.SC_OK,response.SC_NOT_FOUND etc..) values to return process status to the browser.

Send a Response Status in servlet

     

This section illustrates you how to send response status in servlet.

All Response status is defined in HttpServletResponse Class. You can then use constants (response.SC_OK,response.SC_NOT_FOUND etc..) values to return process status to the browser. In the given example, two methods are defined doGet(), doPost. Constants value request and response are used to return status to browser. The setContentType() method of ServletResponse  set the content type of response.

Here the Servlet requests for page name loginForm. So if the request not found, it will show error Not found. Otherwise, it will show OK.

Here is the code of SetResponseStatus.java

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
 
public class SetResponseStatus extends HttpServlet {
 protected void doGet(HttpServletRequest request,
 HttpServletResponse response) throws ServletException, 
   IOException {
 
   doPost(request, response);
  
  }
 protected void doPost(HttpServletRequest request,
  HttpServletResponse response)
 
throws ServletException, IOException {
  response.setContentType("text/html");
 String page = request.getParameter("page");
  if (page != null && page.equals("loginForm")) {
 response.setStatus(response.SC_OK);
  else {
  response.sendError(response.SC_NOT_FOUND,
   
"The requested page ["+ page + "] not found.");
  }
  }
}
 

Above example shows how a response has been send from the servlet. If the requested page (loginForm) is not found Output will be displayed like this:

Download Source Code

Related Tags for Send a Response Status in servlet:
chttpbrowserclassantprocessposthttpsmethodsservletmethodsedgettypeconstrequestconstantscontentvaluereturnresponsesetrowdefinestatusrowsexampleconstantvaluestowseexamposprocwsettynotcanusepecebrowsecontenttypeinnoasstamntpstroscaosletclesalloposmeprododefinedxaxampsurnspessespatquestkhttpservletresponseisllivmplandarstatconstcorvvatttwssrocthtpsstantsaluetcfinetchttpservletpleplprocesprndodsono


More Tutorials from this section

Ask Questions?    Discuss: Send a Response Status in servlet   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.