> mainframe specific command (there is no method in Net::FTP that corresponds
> with this command).  The command I need to issue is "quote site lrecl=827
> recfm=fb blksize=27291 cylinder primary=1 secondary=1".

is the mainframe expecting text in ASCII or EBCDIC encoding?

>From the FTP.pm module:

# Allow the user to send a command directly, BE CAREFUL !!

sub quot
{
 my $ftp = shift;
 my $cmd = shift;

 $ftp->command( uc $cmd, @_);
 $ftp->response();
}


Notice that the command is being changed to uppercase - is this what you
want?

Finally, what FTP server is running on the mainframe?


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to