dwhitney has asked for the wisdom of the Perl Monks concerning the following question:
My Results:use Net::SFTP; my %args = ( user => $Username, password => $Password, debug => 0, protocol => '1,2', port => '22', ); my $sftp = Net::SFTP->new( $Host, %args ) or $self->logcroak( "SFTP Object Error: $@" ); printf "<= SFTP Dump => %s\n%s\n", Dumper( \%args ), Dumper( $sftp ); die "Foo!\n";
From what I can see it dies in the new call, so no log message, but I'll be darned if I can find an answer as to what to do. Thank you. ++Dennis UpdateUse of uninitialized value in concatenation (.) or string at C:/Apps/p +erl/site/lib/Net/SSH/Perl.pm line 107. Can't map service name 'ssh' to port number at C:/Apps/perl/site/lib/N +et/SFTP.pm line 36
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Using Net::SFTP on a windows system.
by shenme (Priest) on Mar 03, 2005 at 02:29 UTC | |
by dwhitney (Beadle) on Mar 03, 2005 at 18:43 UTC | |
Re: Using Net::SFTP on a windows system.
by hsinclai (Deacon) on Mar 03, 2005 at 00:57 UTC | |
by dwhitney (Beadle) on Mar 03, 2005 at 18:34 UTC |