in reply to Re: Win32::Daemon problem
in thread Win32::Daemon problem
You're right, thanks for the spot but that's not what was causing the problem.
After some research, I found that the real problem was that the perl interpreter wasn't able to find the package I was trying to include because the service gets started from a different directory than the one where I placed my script and module.
This problem is now solved by adding the directory to the @INC list :
use lib "c:/mypath";
Regards,
<ruelty
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Win32::Daemon problem
by $code or die (Deacon) on Sep 21, 2001 at 03:44 UTC |