in reply to Executing command line script in Eclipse or as Win32::Daemon does not work
Why is it reporting the error "53", what could be the reason for this or what does it mean.
The return code 53 a system error code. You can find out is text quite easily:
C:\test>perl -E"say $^E = 53" The network path was not found
The whole program works perfectly if executed from the command line. But as soon as I launch the debugger or install it as a service (Win32::Daemon), it reports this weird error.
You'll have to wait for someone else to explain the Eclipse problem; but when install it as a service, it probably means it is running under a userid (probably LocalSystem), which does not have the privileges to access the network.
See here for more.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Executing command line script in Eclipse or as Win32::Daemon does not work
by Anonymous Monk on Jul 30, 2012 at 08:07 UTC | |
by BrowserUk (Patriarch) on Jul 30, 2012 at 13:21 UTC |