RE: SFTP from Perl for Windows

2009-08-27 Thread Ashley Cooper
lto:r...@i.frys.com] Sent: Friday, 28 August 2009 11:21 AM To: Ashley Cooper Cc: beginners@perl.org Subject: RE: SFTP from Perl for Windows Ashley Cooper wrote: > Unfortunately I forgot to mention a crucial point about > the function I am trying to code for. > > The source Windows server fro

RE: SFTP from Perl for Windows

2009-08-27 Thread rkb
Ashley Cooper wrote: > Unfortunately I forgot to mention a crucial point about > the function I am trying to code for. > > The source Windows server from which the files have to be > copied is external to our organisation - the server > belongs to a third party. The server is open for SFTP > transf

RE: SFTP from Perl for Windows

2009-08-27 Thread Ashley Cooper
who has managed to successfully install Net::FTPSSL. Regards, @shley -Original Message- From: Sisyphus [mailto:sisyph...@optusnet.com.au] Sent: Thursday, 27 August 2009 1:30 PM To: Ashley Cooper; beginners@perl.org Subject: Re: SFTP from Perl for Windows - Original Message

RE: SFTP from Perl for Windows

2009-08-26 Thread David Christensen
Ashley Cooper wrote: > I need to be able to do file transfers via SFTP from Perl > (ActiveState) in a Windows environment but I am having trouble > finding a suitable Perl module that works. > ... > Can anyone suggest ... a different option? Cygwin and Cygwin Perl and OpenSSH packages: http:/

Re: SFTP from Perl for Windows

2009-08-26 Thread Sisyphus
- Original Message - From: "Ashley Cooper" To: "Sisyphus" ; Sent: Thursday, August 27, 2009 1:37 PM Subject: RE: SFTP from Perl for Windows I can see a Net::SSH on ActiveState, but not Net::SSH2. Is this the same thing? No, it's different - and th

RE: SFTP from Perl for Windows

2009-08-26 Thread Ashley Cooper
I can see a Net::SSH on ActiveState, but not Net::SSH2. Is this the same thing? Regards, @shley -Original Message- From: Sisyphus [mailto:sisyph...@optusnet.com.au] Sent: Thursday, 27 August 2009 1:30 PM To: Ashley Cooper; beginners@perl.org Subject: Re: SFTP from Perl for Windows

Re: SFTP from Perl for Windows

2009-08-26 Thread Sisyphus
- Original Message - From: "Sisyphus" Adapted (and untested) from an actual script I use: ## use warnings; use strict; use Net::SSH2; my $server = 'server.nameer'; my $ssh2 = Net::SSH2->new; die "can't connect" unless $ssh2->connect($server); print "Conn

Re: SFTP from Perl for Windows

2009-08-26 Thread Sisyphus
- Original Message - From: "Ashley Cooper" To: Sent: Thursday, August 27, 2009 12:13 PM Subject: SFTP from Perl for Windows I need to be able to do file transfers via SFTP from Perl (ActiveState) in a Windows environment but I am having trouble finding a suitable Perl m

SFTP from Perl for Windows

2009-08-26 Thread Ashley Cooper
I need to be able to do file transfers via SFTP from Perl (ActiveState) in a Windows environment but I am having trouble finding a suitable Perl module that works. I have tried installing Net::SFTP::Foreign via ppm but it apparently relies on having an ssh command that it can call to establish