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.
Sigar
