Re: Forking using mod_perl

2005-06-11 Thread Patrick LeBoutillier
> The user does not need to know what the result of the web services > call is (essentially, I am duplicating data over to another system). > So what I need to do is do an update locally, spawn the process to do > the remote update and return to the user (as the spawned process is > doing it's thin

Re: Forking using mod_perl

2005-06-10 Thread Luke Chambers
Patrick, Thank you for your interest in my situation. This issue has raised concerns for me that Inline:Java is not safe in a web environment (multiple users at once), but I know others are using it, so I am hoping that it is merely my implementation. On Jun 10, 2005, at 9:08 AM, Patrick Le

RE: Forking using mod_perl

2005-06-10 Thread Ken.Williams
> -Original Message- > From: Luke Chambers [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 09, 2005 7:09 PM > To: [email protected] > Subject: Forking using mod_perl > > > I am trying to use Inline Java under mod_perl. > > The code that I am running fork

Re: Forking using mod_perl

2005-06-10 Thread Patrick LeBoutillier
Luke, On 6/9/05, Luke Chambers <[EMAIL PROTECTED]> wrote: > I am trying to use Inline Java under mod_perl. > > The code that I am running forks right before it executes the Inline > Java sub. It is a very expensive sub... a web services call.. so I > want it to run asynchronously. How exactly do

Forking using mod_perl

2005-06-09 Thread Luke Chambers
I am trying to use Inline Java under mod_perl. The code that I am running forks right before it executes the Inline Java sub. It is a very expensive sub... a web services call.. so I want it to run asynchronously. I am having a hard time getting it to run properly. It seems to execute the