| Author |
Handling Error in JSP
|
Amit Chandak
Greenhorn
Joined: Sep 28, 2003
Posts: 9
|
|
I am having troubles handling error in JSP pages. I am using JSP page directive to specify an error page. At the top of the page I am including a header file using JSP:include. Now what I expect is that if there is any error then only the error page should be displayed. But actually what is displayed is the header followed by the error page. I think I sort of know why is this is happening. In the JSP:include the argument "flush" has a value of true. When I try setting it to false, the page doesnt work and the header is not included at all. When I checked up the syntax for <jsp:include> I found that the value is supposed to be true!! If that is the case how do I solve this problem. Any help in this matter appreciated! Thanks Amit
|
 |
mohamed munaf
Greenhorn
Joined: Feb 11, 2004
Posts: 2
|
|
hi try this <%@ page errorPage="someerrorpage.jsp" %> munaf
|
 |
Amit Chandak
Greenhorn
Joined: Sep 28, 2003
Posts: 9
|
|
i tried it already....even it results in same....no difference.. any other suggestions??
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56152
|
|
|
I believe that the "flush must be true" restriction has been lifted in recent versions of servlet containers, but if you want to avoid the whole flush-on-include scenario you could include your header with the include directive (as opposed to the include action tag).
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
mohamed munaf
Greenhorn
Joined: Feb 11, 2004
Posts: 2
|
|
Hi Did u entered the following code in your web.xml? <error-page> <exception-type>java.lang.Exception</exception-type> <location>someerrorpage.jsp</location> </error-page> Its working fine for me.In case not check your coding munnaf
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56152
|
|
mohamed, I know you are trying to be helpful, but please actually read the original post. He is not having trouble getting an error page to display. thanks, bear
|
 |
 |
|
|
subject: Handling Error in JSP
|
|
|