Home Jsp JSP Error 500



JSP Error 500
Posted on: June 16, 2009 at 12:00 AM
JSP Error 500 is to generate error status 500 in jsp.

JSP Error 500

        

JSP Error 500 is to generate error status 500 in jsp.  The Error 500 occurred when the server encounter an internal error that prevent it from fulfilling the request.

Understand with Example

In this section, you will learn how to generate error status 500 in jsp. You can see in the given example that we create a scriptlet that include sendError() method of the interface HttpServletResponse which sends an error response to the client using the specified status code and descriptive message. You can either use response.SC_INTERNAL_SERVER_ERROR in place of status code 500.

 

 

Here is the code of error500.jsp

<html>
<head>
<title>Generate Error</title>
</head>
<%
response.sendError(500, "Generate Error");
%>
</html>

Output will be displayed as:

Download Source Code:

 

Related Tags for JSP Error 500:
cerrorservereventcountrequestintinternalcountereilitfillliulfrominmnt500esinternwhensatquesthalllfpreccrvssthsthatprpreventomo


More Tutorials from this section

Ask Questions?    Discuss: JSP Error 500  

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.