This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
How can i avoid 404 error in request and responce object. and forward it to user define page.
Anup Srivastava
Greenhorn
Joined: Dec 21, 2005
Posts: 21
posted
0
i want that if the end user give wrong url, then instead of giving 404 error it must display user define page. how can i come to know from request and response objects that the server has thrown 404 error.
You can't as such, since you only get access to the request and response when the server finds the resource. But, you can define your own 404 page in the web.xml and then do your own processing there. Is this what you're looking for?
Satish Chilukuri
Ranch Hand
Joined: Jun 23, 2005
Posts: 266
posted
0
You can handle the 404 error with the error-page element in web.xml
The "error.jsp" is the custom page that you will display to the user.