RE: problem in jsp response

2004-01-14 Thread Shapira, Yoav
Howdy, Howdy, You might want to read up on flushing the output as well as reducing the page buffer size, both elementary JSP issues. Yoav, why are we *encouraging* this absolute misuse of Servlets and JSPs? I won't argue about design practices, as THAT is a road to madness ;) If you don't

problem in jsp response

2004-01-13 Thread Rogerio Baldini das Neves
Hi, I have a problem that's getting me crazy. A code in jsp file like this: %for(int i=0; i10; i++){out.println("i:"+i+"br");Thread.sleep(1000);}% is just showed in browser when tomcat finishes processing all iterates (it takes 10 seconds). This is, tomcat sends the html soucecode just

Re: SPAM?: problem in jsp response

2004-01-13 Thread jean-philippe . belanger
I think the jsp cache can do the trick of you set it off check the jsp directive Jean-Philippe Bélanger CGI Rogerio Baldini das Neves wrote: Hi, I have a problem that's getting me crazy. A code in jsp file like this: ** *% for(int i=0; i10; i++) { out.println(i:+i+br); Thread.sleep(1000);

Re: SPAM?: problem in jsp response

2004-01-13 Thread jean-philippe . belanger
sorry... I kinda forgot the right directive and param. it's @page buffer=none% Jean-Philippe Bélanger CGI Rogerio Baldini das Neves wrote: Hi, I have a problem that's getting me crazy. A code in jsp file like this: ** *% for(int i=0; i10; i++) { out.println(i:+i+br); Thread.sleep(1000);

RE: problem in jsp response

2004-01-13 Thread Shapira, Yoav
To: [EMAIL PROTECTED] Subject: problem in jsp response Hi,   I have a problem that's getting me crazy.   A code in jsp file like this:   % for(int i=0; i10; i++) {  out.println(i:+i+br);  Thread.sleep(1000); }  %   is just showed in browser when tomcat finishes processing all iterates (it takes 10

Re: problem in jsp response

2004-01-13 Thread Rogerio Baldini das Neves
1 www.infoquest.com.br + [EMAIL PROTECTED] ( 55 (31) 3261-7030 / Ramal 27 - Original Message - From: [EMAIL PROTECTED] To: Tomcat Users List Sent: Tuesday, January 13, 2004 11:51 AM Subject: Re: SPAM?: problem in jsp

Re: problem in jsp response

2004-01-13 Thread jean-philippe . belanger
AM *Subject:* Re: SPAM?: problem in jsp response sorry... I kinda forgot the right directive and param. it's @page buffer=none% Jean-Philippe Bélanger CGI Rogerio Baldini das Neves wrote: Hi, I have a problem that's getting me crazy. A code in jsp

problem in jsp response

2004-01-13 Thread Rogerio Baldini das Neves
Hi, I have a problem that's getting me crazy. A code in jsp file like this: %for(int i=0; i10; i++){out.println("i:"+i+"br");Thread.sleep(1000);}% is just showed in browser when tomcat finishes processing all iterates. This is, tomcat sends the html soucecode just when process ends. I

Re: problem in jsp response

2004-01-13 Thread Nikola Milutinovic
Shapira, Yoav wrote: Howdy, You might want to read up on flushing the output as well as reducing the page buffer size, both elementary JSP issues. Yoav, why are we *encouraging* this absolute misuse of Servlets and JSPs? I mean, I understand what the original poster wants - to have a page that