Return-Path: Delivered-To: apmail-jakarta-tomcat-user-archive@jakarta.apache.org Received: (qmail 41012 invoked by uid 500); 22 Aug 2001 01:38:56 -0000 Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Precedence: bulk Reply-To: tomcat-user@jakarta.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 41005 invoked from network); 22 Aug 2001 01:38:55 -0000 Received: from femail10.sdc1.sfba.home.com (24.0.95.106) by h31.sny.collab.net with SMTP; 22 Aug 2001 01:38:55 -0000 Received: from cr353203a ([24.76.102.18]) by femail10.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with SMTP id <20010822013854.FPCS13627.femail10.sdc1.sfba.home.com@cr353203a> for ; Tue, 21 Aug 2001 18:38:54 -0700 Message-ID: <004e01c12aaa$36dbdcb0$12664c18@cr353203a> From: "Pierre Carette" To: References: <01b101c12a8b$008ee4f0$02638780@secns.uchicago.edu> <006a01c12aa6$cb509c40$0201a8c0@brunhild> Subject: Re: Possible to return multiple responses/pages for a request? Date: Tue, 21 Aug 2001 18:31:49 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Where can I download a compatible version of the servlet API for tomcat 3.2 ? Thanks, Pierre ----- Original Message ----- From: "Shunsuke Masuda" To: Sent: Tuesday, August 21, 2001 6:06 PM Subject: Re: Possible to return multiple responses/pages for a request? > Hello, > > I have the same requirement on the current project. > > What I am doing is to use threads for heavy tasks and > let browsers reload by "". > References to the threads are setAttr'ed into HttpSession, > and a servlet checks on each reload whether or not the > threads complete. > > Shunsuke Masuda > > ----- Original Message ----- > From: "Jonathan Eric Miller" > To: "Tomcat User List" > Sent: Wednesday, August 22, 2001 6:48 AM > Subject: Possible to return multiple responses/pages for a request? > > > > I'm wondering if it is possible to return multiple responses/pages from a > > given request? > > > > I have a servlet that performs some processing after a form is submitted > to > > it. This processing sometimes takes several seconds to complete. What I > want > > to do is first display a page which says "Processing your request, please > > wait..." Then, after the processing is done, I want to display another > page. > > The second page should replace the first page in the user's browser. > > > > >