Re: Spawn new process -> get pid

2008-02-05 Thread Gabriel Genellina
En Tue, 05 Feb 2008 20:05:04 -0200, breal <[EMAIL PROTECTED]> escribió: > I need the program to start fully before I go on any further so that > it is available later in my script. After it is used I need to kill > the pid of the program I started. So, I was trying to use > my_process = subpro

Re: Spawn new process -> get pid

2008-02-05 Thread breal
On Feb 4, 9:25 pm, Gabriel Genellina <[EMAIL PROTECTED]> wrote: > On 4 feb, 22:21, breal <[EMAIL PROTECTED]> wrote: > > > > > On Feb 4, 3:34 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > > > > En Mon, 04 Feb 2008 20:59:16 -0200, breal <[EMAIL PROTECTED]> > > > escribió: > > > > > I have a so

Re: Spawn new process -> get pid

2008-02-04 Thread Gabriel Genellina
On 4 feb, 22:21, breal <[EMAIL PROTECTED]> wrote: > On Feb 4, 3:34 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > > > En Mon, 04 Feb 2008 20:59:16 -0200, breal <[EMAIL PROTECTED]> > > escribió: > > > > I have a soap server written in Python that acts as an intermediary > > > between a web ser

Re: Spawn new process -> get pid

2008-02-04 Thread breal
On Feb 4, 3:34 pm, "Gabriel Genellina" <[EMAIL PROTECTED]> wrote: > En Mon, 04 Feb 2008 20:59:16 -0200, breal <[EMAIL PROTECTED]> > escribió: > > > I have a soap server written in Python that acts as an intermediary > > between a web service and an InDesign server. The indesign server is > > non-t

Re: Spawn new process -> get pid

2008-02-04 Thread Gabriel Genellina
En Mon, 04 Feb 2008 20:59:16 -0200, breal <[EMAIL PROTECTED]> escribió: > I have a soap server written in Python that acts as an intermediary > between a web service and an InDesign server. The indesign server is > non-threaded, so when all instances are used up I want to create a new > instanc

Spawn new process -> get pid

2008-02-04 Thread breal
I have a soap server written in Python that acts as an intermediary between a web service and an InDesign server. The indesign server is non-threaded, so when all instances are used up I want to create a new instance, get the pid, use the process, then kill it. What is the best way to do this? I