after commit of response as here redirect statement should give exception but it is not doing so if this redirect statemnet is in if block.but it does give exception in case it is out of if block.i have shown same statement(with marked stars ) at two places below.can u please tell me reason for it.
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
synchronized (noOfRequests)
{
noOfRequests++;
}
PrintWriter pw=null;
response.setContentType("text/html");
response.setHeader("foo","bar");
//response is commited because of above statement
pw=response.getWriter();
pw.print("hello : "+noOfRequests);
//if i remove below statement this same statement is present in if block.so statement in if block should also give exception as this one do, but its not doing so.why?
***response.sendRedirect("http://localhost:8625/ServletPrc/login% 20page.html");
if(true)
{
//same statement as above
***response.sendRedirect("http://localhost:8625/ServletPrc/login%20page.html");
}
else{
request.setAttribute("noOfReq", noOfRequests);
request.setAttribute("name", new Name().getName());
request.setAttribute("GmailId",this.getServletConfig().getInitParameter("GmailId") );
request.setAttribute("YahooId",this.getServletConfig().getInitParameter("YahooId") );
RequestDispatcher view1=request.getRequestDispatcher("HomePage.jsp");
view1.forward(request, response);
}
}