Xavier Lawrence wrote:
After some tests, I discovered that every
<jsp:include page="header.jsp"> <jsp:param name="title" value="Delete Public Events"/> </jsp:include>
generated a new Request. Indeed, I removed all the jsp:include tags and got no more Exceptions (because the connexion was only closed once).
The question is: Why does a jsp:include generate a new Request ???
Because the Tag probably issues a
request.getRequestDispatcher("header.jsp?title=Delete Public
Events").include(request,response)(or at least something similar).
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
