Net::FTPSSL problem (or how to do FTP over SSL another way?)



I'm trying to write a simple script to upload a file to an FTP server
using Net::FTPSSL. Everything works fine until I try to actually upload
the file. Based on the warnings and trace info it seems to have
something to do with using PASV mode. I'm able to connect and transfer
files just fine in PASV mode using my desktop FTP client, so I have no
idea what the problem might be. Here is the output when I run the
script. I get the same result whether I try to upload or download a
file. Any ideas? Is there any other easy way to do FTP over SSL in
Perl?


USER *****
<<< 331 Password required for *****.
PASS *****
<<< 230-Welcome to the ***** Secure FTP Server!
CWD /*****/
<<< 230 User ***** logged in.
TYPE A
<<< 250 CWD command successful now (/******)
PBSZ 0
<<< 200 Type set to A
PROT P
<<< 200 Great whatever you say
PASV
<<< 200 Data channel will be encrypted
Use of uninitialized value in split at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 141.
Use of uninitialized value in join or string at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 143.
Use of uninitialized value in join or string at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 143.
Use of uninitialized value in join or string at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 143.
Use of uninitialized value in join or string at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 143.
Use of uninitialized value in multiplication (*) at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 144.
Use of uninitialized value in addition (+) at
/usr/lib/perl5/site_perl/5.8.5/Net/FTPSSL.pm line 144.
Use of uninitialized value in subroutine entry at
/usr/lib/perl5/5.8.5/i386-linux-thread-multi/Socket.pm line 373.
Bad arg length for Socket::pack_sockaddr_in, length is 0, should be 4
at /usr/lib/perl5/5.8.5/i386-linux-thread-multi/Socket.pm line 373.

.



Relevant Pages

  • Re: IIS & Frontpage permissions?
    ... you could use FTP to upload the image. ... "username" is username used to logon to this FTP ... Most important thing about this script is that it is stored in secured ...
    (microsoft.public.inetserver.iis.security)
  • Re: Single Logon
    ... upload command to upload files ... which implement those basic FTP verbs. ... |> components will retrieve a ServicePoint(which represent a connection to ... |> | private void DownloadFile(string strFilename, string strAddress, ...
    (microsoft.public.dotnet.framework.aspnet.webcontrols)
  • Re: automated upload with PHP
    ... have your script one once per day and upload any images not already ... providing it can have an ftp serve running on it, ... tiffs and the php script, ...
    (comp.lang.php)
  • Re: automated upload with PHP
    ... have your script one once per day and upload any images not already ... providing it can have an ftp serve running on it, ... tiffs and the php script, ...
    (comp.lang.php)
  • Re: Automating an upload of data
    ... ftp folder, and upload the file to your local computer, and then run the ... The first script fires an ftp session, the second script does the upload. ...
    (microsoft.public.dotnet.framework.aspnet)

Loading