Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » JSP error page doesn't work in eclipse internal browser but works in chrome(JSP error page using isErrorPage="true" doesn't show up in eclipse internal browser, but works fine in Chrome.)
JSP error page doesn't work in eclipse internal browser but works in chrome [message #1755534] Sun, 05 March 2017 07:26
Pratiksha Jain is currently offline Pratiksha JainFriend
Messages: 1
Registered: March 2017
Junior Member
Hello, I am trying out a simple error page using JSPs which should show up in case of any exception. It works fine with Chrome but not working in Eclipse Internal Browser. Can someone please help if i am missing out on anything.

TestErrorPage.jsp
<%@page  isErrorPage="false" errorPage="error.jsp" %>
<%  
String num1=request.getParameter("n1");  
String num2=request.getParameter("n2");  
  
int a=Integer.parseInt(num1);  
int b=Integer.parseInt(num2);  

int c=a/b;

%> 



error.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1" isErrorPage="true"%>
 <%
 System.out.println("in Error Page");
 %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Error page</title>
</head>
<body>
<h3>Sorry an exception occurred!</h3>  
  
Exception is: <%=exception %>
</body>
</html>



web.xml

  <error-page>
	    <error-code>500</error-code>
	    <location>/error.jsp</location>
  </error-page>
  <error-page>  
  		<exception-type>java.lang.Exception</exception-type>  
  		<location>/error.jsp</location>  
  </error-page>



If i give n2 as 0 and run this using Eclipse internal browser, it show the System.out i have given in error.jsp, but the error page doesn't get displayed whereas it works fine in Chrome.
Is there any thing in the code i am missing or is there any setting to enable this. If someone could please help. Thanks.
Previous Topic:JDT - Find Length of IF Statement
Next Topic:Debugging jdt.core
Goto Forum:
  


Current Time: Wed Apr 24 19:36:01 GMT 2024

Powered by FUDForum. Page generated in 0.03364 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top