If you have to make a call to the HTML file from your servlet, you would have to use the RequestDispatcher class. You can use either the include() or the forward() method based on your requirement. Please refer to the Servlet docs for usage information.
simply use, response.sendRedirect(request.getContextPath()+"redirectionfile.htm"); -- this one is absolute fragment type redirection --this one equvalent to response.sendRedirect( " /redirectionfile.htm " );
If you're asking for technical help, please be sure to include all your system info, including operating system, model number, and any other specifics related to the problem. Also please exercise your best judgment when posting in the forums--revealing personal information such as your e-mail address, telephone number, and address is not recommended.
servlets