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
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
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
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
> >>> 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
> >>>
> >>>
> >>
; 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
>
> > >
> > >>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
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
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
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
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
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
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
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
&
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
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
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
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: <
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
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
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
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:
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
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
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
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
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
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
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
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
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 .-
31 matches
Mail list logo