You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "sam liu (JIRA)" <ji...@apache.org> on 2015/05/11 08:46:00 UTC

[jira] [Created] (NET-571) Hang on running 'setFileTransferMode(FTP.BLOCK_TRANSFER_MODE)' against IIS ftp server on Windows

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)