"renen" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi Folks,
>
> I want to tell the browser / Tomcat that I'm done processing my JSP page
> (ie, the little spinning icon in Firefox should stop spinning!).
>
> However, I still want to log a couple of things (duration, browser in
Hi,
Never do a
response.getWriter().close();
A good design would not ask you to close something that you did not
open, and this is one of those cases.
The full response is sent when your page "releases the thread" that
is working on this request. This is, if you want to do some processing
and