sam liu created NET-571:
---------------------------

             Summary: Hang on running 
'setFileTransferMode(FTP.BLOCK_TRANSFER_MODE)' against IIS ftp server on Windows
                 Key: NET-571
                 URL: https://issues.apache.org/jira/browse/NET-571
             Project: Commons Net
          Issue Type: Bug
          Components: FTP
            Reporter: sam liu
            Priority: Blocker


The test codes is:
{code}
FTPClient client = null;
client = new FTPClient();
client.connect(host, port);
int reply = client.getReplyCode();
if (client.login(user, password)) {
                  client.setFileTransferMode(FTP.BLOCK_TRANSFER_MODE);
                  client.setFileType(FTP.BINARY_FILE_TYPE);
                  client.setBufferSize(DEFAULT_BUFFER_SIZE);
... ...
}
{code}

It passed against FileZilla FTP server installed on Windows7, but it will hang 
on the line 'client.setFileTransferMode(FTP.BLOCK_TRANSFER_MODE);' against IIS 
ftp server installed on the same Window7 OS.




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to