[guest - Thu Oct 20 05:47:02 2005]:
Show quoted text> hello,
>
> I'm using Windows XP and ActivePERL, and I met some bugs by using your
> library NET:FTPSSL.
> When I want to connect myself to a ftp with an explicit connection on
> port 990, it doesn't hold account of my parameters and uses an
> implicit connection on port 21.
> I think the method NEW() doesn't pay attention to the parameters I
> enter and still uses the default parameters.
>
Sorry for the lateness of my response.
There are some typos on the documentation, so the parameters must be passed capitalized.
Like this:
<code>
use Net::FTPSSL;
my $ftps = Net::FTPSSL->new('ftp.yoursecureserver.com',
Port => 21,
Encryption => 'I',
Debug => 1)
or die "Can't open ftp.yoursecureserver.com";
</code>
The correction of these typos is on my to-do list.
Thank you,
--
kral