RE: background process

2002-09-23 Thread tran . huynh
sounds like a good idea, thank you. > -Message d'origine- > De: Jonathan Keller [mailto:[EMAIL PROTECTED]] > Date: vendredi 20 septembre 2002 20:37 > À: Ant Users List > Objet: Re: background process > > > Take a look at the task. You can use it to

Re: background process

2002-09-20 Thread Jonathan Keller
Take a look at the task. You can use it to fire up a server in one thread and run code against that server in another thread. [EMAIL PROTECTED] wrote: >Hi all, > >I am looking for a way to run a process in background >using ANT, do some other tasks and finally kill the >bac

Re: background process

2002-09-20 Thread Matt Benson
Seems that judicious use of tasks and file parsing could get you what you need. -Matt --- [EMAIL PROTECTED] wrote: > Hi all, > > I am looking for a way to run a process in > background > using ANT, do some other tasks and finally kill the > background process before lea

background process

2002-09-20 Thread tran . huynh
Hi all, I am looking for a way to run a process in background using ANT, do some other tasks and finally kill the background process before leaving ANT. Has anyone ever done this before ? Any hint/help would be greatly appreciated. Tran -- To unsubscribe, e-mail: <mailto:[EMAIL PROTEC

Re: Starting a Java application in the background.

2002-07-02 Thread Hal Hildebrand \(web\)
> >>> started running. This is the effect I want, so is there a way of > >> getting > >>> ant to kill itself at the end of the build? > >>> > >>> Regards, > >>> > >>> Ric Searle > >>> > >>> > >>

Re: Starting a Java application in the background.

2002-07-02 Thread Ric Searle
; Regards, >>> >>> Ric Searle >>> >>> >>> On Friday, June 28, 2002, at 05:27 pm, Steve Loughran wrote: >>> >>>> >>>> >>>>> That's by design - usually java processes are part of the build, > and >

Re: Starting a Java application in the background.

2002-07-02 Thread Hal Hildebrand \(web\)
> > > > > >>That's by design - usually java processes are part of the build, and > > >>the > > >build won't continue until the process has terminated. Ant will > > >redirect the > > >process's output/error streams to the bu

Re: Starting a Java application in the background.

2002-07-02 Thread Ric Searle
ant to kill itself at the end of the build? > > > > Regards, > > > > Ric Searle > > > > > > On Friday, June 28, 2002, at 05:27  pm, Steve Loughran wrote: > > > > > > > > > > >>That's by design - usually java processes are part of the build, an

Re: Starting a Java application in the background.

2002-07-01 Thread Steve Loughran
From: "Dominique Devienne" <[EMAIL PROTECTED]> To: "'Ant Users List'" <[EMAIL PROTECTED]> Sent: Monday, July 01, 2002 11:03 Subject: RE: Starting a Java application in the background. > Perhaps, but the patch in bugzilla (which I also have) looks OK to m

RE: Starting a Java application in the background.

2002-07-01 Thread Dominique Devienne
ow... --DD -Original Message- From: Thomas Zander [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 12:02 PM To: Ant Users List Subject: Re: Starting a Java application in the background. So; like Steve said; its quite hard to write :) -- To unsubscribe, e-mail: <mailto:[EMAIL PR

Re: Starting a Java application in the background.

2002-07-01 Thread Thomas Zander
java processes are part of the build, and > >>the > >build won't continue until the process has terminated. Ant will > >redirect the > >process's output/error streams to the build log, too. > > > >>It shouldn't be *too* hard to write some ki

Re: Starting a Java application in the background.

2002-07-01 Thread Ric Searle
y design - usually java processes are part of the build, and >> the > build won't continue until the process has terminated. Ant will > redirect the > process's output/error streams to the build log, too. > >> It shouldn't be *too* hard to write some kind of &q

RE: background

2002-02-14 Thread Dominique Devienne
Hi Bill, Would you have the link to the equivalent Windows work around please? I would appreciate. Thanks, --DD -Original Message- From: Bill Burton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 6:11 PM To: Ant Users List Subject:Re: background Hello

Re: background

2002-02-13 Thread Bill Burton
Hello, Sujan Digumarti wrote: > > by using the exec task and passing the executable as startWebLogic.sh . > i 've tried passing the argument "&" by doing & so that the script runs > in the background .. but the control doesn't come back to ant .. will &

RE: background

2002-02-07 Thread Sujan Digumarti
by using the exec task and passing the executable as startWebLogic.sh . i 've tried passing the argument "&" by doing & so that the script runs in the background .. but the control doesn't come back to ant .. will checkout the parallel task.. thanks, Sujan -Origin

RE: background

2002-02-07 Thread Eddie Bernard
Stace [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 07, 2002 9:02 PM To: Ant Users List Subject: Re: background How do you start weblogic in your ant script? On Fri, 8 Feb 2002 10:24:00 +0530 Sujan Digumarti <[EMAIL PROTECTED]> wrote: > Anyone knows how to run a background p

Re: background

2002-02-07 Thread Antony Stace
How do you start weblogic in your ant script? On Fri, 8 Feb 2002 10:24:00 +0530 Sujan Digumarti <[EMAIL PROTECTED]> wrote: > Anyone knows how to run a background process through ant in solaris.. > > actually i have to run the weblogic server through my script .. the control

background

2002-02-07 Thread Sujan Digumarti
Anyone knows how to run a background process through ant in solaris.. actually i have to run the weblogic server through my script .. the control doesn't come back to ant.. tar, Sujan -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <

ant hangs after shell based background forking

2001-11-21 Thread Klemens Hemm
Hi, overall I want to start a daemon by ant-1.4.1 the following fragment should start xlogo in the background and return The corresponding command would be "sh -c logo &" this 1) executes/bin/sh 2) executes xlogo 3) ends /bin/sh 4) keeps up xlogo and link

Re: How to run a background app? (Partial solution)

2001-09-21 Thread Paul Michali
I previously wrote (regarding starting a mail server for JUnit tests): > I've got a few postings trying to figure out how to do this from Ant, > with a > custom task to test to see if it is running. I'm also exploring how to > kick > this server off, from inside my JUnit tests. So, I was down to

Re: How to run a background app?

2001-09-20 Thread Paul Michali
Chris Flemetakis wrote: > > I have never used the parallel task but it does sound to me like what you > should use.. > > I would also suggest using sleep after you start your parallel tasks to give > the app server time to start up before you begin your junit tests > > If it it a weblogic serve

Re: How to run a background app?

2001-09-20 Thread Chris Flemetakis
the wlstart and wlstop features of ant to ensure a "clean" startup and shutdown of all procedures. Chris >From: Paul Michali <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: How to run a background app? >Date: Thu, 20 Sep 2001 14:

How to run a background app?

2001-09-20 Thread Paul Michali
Hi, I want to start up a Java app (server) and leave it running during the JUnit testing phase of a build. How do I do that from within Ant? It is OK, if I leave the app running, after the Ant run completes. I tried the but it will not return until the app ends. Do I use ? -- PCM (Paul Mich

Background tasks

2001-08-30 Thread Andrés
Is there any way to launch background tasks using ant?. I'd like to do things like "rmid &" in linux. -- A woman drove me to drink and I didn't even have the decency to thank her. (W.C. Fields) Andrés

Starting Background Tasks with Ant

2001-05-20 Thread Nigel Leslie
Good Afternoon, I am using Ant on a Linux machine, and am attempting to start a java process as a background task. However, including a '&' (or &) as an argument does not cause the process to start separately. (in fact it didn't like it at all) I have also created a

Re: running tasks in the background

2001-04-10 Thread Stefan Bodewig
tly is no way to do asynchronous executions, apart from invoking a script that invokes the command you really wanted to run and puts it into the background. Stefan

RE: running tasks in the background

2001-04-10 Thread Halim, Salman
Wagner [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 3:53 PM To: '[EMAIL PROTECTED]' Subject: RE: running tasks in the background I had actually thought that this was the default functionality. ie, that Ant would not wait while an arbitrary process finished execution, but

RE: running tasks in the background

2001-04-10 Thread Shannon Wagner
wait until that process is done before it continues. -Original Message- From: Halim, Salman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 2:52 PM To: '[EMAIL PROTECTED]' Subject: running tasks in the background hi, i wanted to extend the 'fork' capability

running tasks in the background

2001-04-10 Thread Halim, Salman
hi, i wanted to extend the 'fork' capability of the java task to other executables. i need to start a few processes and continue without waiting for the first one to finish, but they aren't java processes. has anybody done anything similar? thank you in advance, -- Salman Halim Advisory Soft

Re: Using exec to run scripts in background

2001-03-14 Thread Bill Burton
Hello Jesus, Jesus Sanchez Gonzalez wrote: > > Is there any way to use the exec tag to run a script in background? No, not currently. > What I would like to do is to start the application launching a script > in background from ant but without having to write a new scr

Using exec to run scripts in background

2001-03-13 Thread Jesus Sanchez Gonzalez
Is there any way to use the exec tag to run a script in background? What I would like to do is to start the application launching a script in background from ant but without having to write a new script with the ampersand at the end of the call. Thanks. jess .-