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