> From: Leonard Gestrin [mailto:[email protected]] > Subject: JSPwriterImpl generates IO exception while processing > <jsp:include>that gets forwarded. > > Is it illegal to forward request while processing "include"?
No, but it's illegal to forward a request after the response has been committed. Are you actually doing a RequestDispatcher.forward() call, or are you using HttpServletRequest.sendError()? The latter is the proper way to trigger the error page. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
