Re: jsp done processing!

2007-11-09 Thread Bill Barker
"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

Re: jsp done processing!

2007-11-09 Thread Lucas Galfaso
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