Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: ActivePerl - perl.exe works, wperl.exe does not...

by spstansbury (Monk)
on Jan 26, 2012 at 18:52 UTC ( [id://950192]=note: print w/replies, xml ) Need Help??


in reply to Re: ActivePerl - perl.exe works, wperl.exe does not...
in thread ActivePerl - perl.exe works, wperl.exe does not...

This works...

Given that I can run perl.exe with no child window, I can scrap wperl.exe... ;)

Clearly there's some other difference between the two binaries - I have other wperl scripts that run fine, it was just theNet::SFTP::Foreign line:

my $sftp = Net::SFTP::Foreign->new( $host, user => $user, password => $password, ssh_cmd => 'plink' );

that wperl choked on that perl.exe handled without a problem...

Thanks much for your help! Scott...

Replies are listed 'Best First'.
Re^3: ActivePerl - perl.exe works, wperl.exe does not...
by Anonymous Monk on Jan 27, 2012 at 09:36 UTC

    The difference is STDIN/STDOUT/STDERR/

    wperl.exe, being a windows GUI application, doesn't have these

    perl.exe, being a windows console (cmd.exe) application, does have these, but it also has a console window

    So you start wperl because it has no console window, make sure the children get hidden, then launch a hidden perl.exe , because it has a console and STDIN/STDOUT/STDERR

    Apparently Net::SFTP ... needs a STDIN/STDOUT/STDERR for pipes and such

      Lovely, thank You..:-)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://950192]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-23 12:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found