suogen wrote: > Hi all, > > I am newbie to the ant, I think this question may have been asked before, but I >search the messages, i don't think > I have got the result i expected. > > I can use <parallel> to achieve it in different thread, but not process: > > <target name="runall"> > <parallel> > <antcall target="runserver"> > <sequential> > <sleep seconds=10" /> > <antcall target="runclient"> > </sequential> > </parallel> > </target> > > how to run the server and client in different process, any help are appreciated. > >
Not knowing how runserver and runclient operate, one could only guess. If these are implemented as <java> tasks, then simply set fork="yes" to run within a different VM. Conor -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>