Re: how to create background process

2007-11-07 Thread Martin Gainty
: how to create background process Hi, I need to implement file download functionality in struts application. when user submits a filedownload request, FileProcessAction should delegate the download process to another thread which runs as background process and return to some other page

Re: how to create background process

2007-11-07 Thread Wes Wannemacher
a filedownload request, FileProcessAction should delegate the download process to another thread which runs as background process and return to some other page without waiting for file download completion.How to do it ? Thanks.. -- View this message in context: http

Re: how to create background process

2007-11-07 Thread Giovanni Azua
Hi, Martin Gainty wrote: Encapsulate the long running resource in run() method of a Thread here is a good example http://java.sun.com/developer/technicalArticles/Threads/applet/ M-- I think the Java Servlet specification discourages such misbehavior (creating threads explicitly): Copied

how to create background process

2007-11-07 Thread rbtechno
Hi, I need to implement file download functionality in struts application. when user submits a filedownload request, FileProcessAction should delegate the download process to another thread which runs as background process and return to some other page without waiting for file

Re: how to create background process

2007-11-07 Thread Wes Wannemacher
To be honest, I don't think I fully understood the request the first time I read it. In re-reading the original post, I wonder if you are looking for functionality similar to the sourceforge download page... Are you hoping to start the user's browser downloading, but rather than waiting for the

[OT] running application server (OC4J) as a background process

2004-05-05 Thread Shyam A
Hello, I'm working on a Struts application using stand alone OC4J (Oracle 9i AS) as my application server. I need to deploy my application on a Windows NT machine (remote), and run the application server as a background process. Is it possible to run the server as a Windows service? Has anybody

RE: background process

2004-05-04 Thread Guillermo Meyer
Mayo de 2004 05:32 p.m. To: 'Struts Users Mailing List' Subject: background process Hi Folks, I need implement an action which sends back a forward upon request and then, keep working on a batch process till finish in the background. Anyone familiar with an easy mechanism in struts 1.1? Thanks

Re: background process

2004-05-03 Thread Bryan Hunt
] Sent: Monday, May 03, 2004 1:32 PM Subject: background process Hi Folks, I need implement an action which sends back a forward upon request and then, keep working on a batch process till finish in the background. Anyone familiar with an easy mechanism in struts 1.1? Thanks. Robert

background process

2004-05-03 Thread Wei, Robert (MAN-Corporate)
Hi Folks, I need implement an action which sends back a forward upon request and then, keep working on a batch process till finish in the background. Anyone familiar with an easy mechanism in struts 1.1? Thanks. Robert - To

Re: background process

2004-05-03 Thread atta-ur rehman
-Corporate) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Monday, May 03, 2004 1:32 PM Subject: background process Hi Folks, I need implement an action which sends back a forward upon request and then, keep working on a batch process till finish in the background

RE: background process

2004-05-03 Thread David Friedman
: Monday, May 03, 2004 8:21 PM To: Struts Users Mailing List Subject: Re: background process If it's unix that you are running on you could run a command using nohup , the java orthodox way is to use a message driven bean/jms if you are running inside an applicaion server such as JBoss. --B atta