Our Products:   CompleteFTP  edtFTPnet/Free  edtFTPnet/PRO  edtFTPj/Free  edtFTPj/PRO
0 votes
4.4k views
in .NET FTP by (240 points)
I'm having issues with uploading large files. Somewhere between 23 and 30 mb, it just totally freezes. Is this a known issue? I've tried several ftp's and gotten the same symptoms.

7 Answers

0 votes
by (162k points)
Our unit tests transfer files larger than 30 MB. Have you any more info?
0 votes
by (240 points)
This was a 40 some mb file. Here is the code we used:

_ftp.RemoteHost = ConfigurationManager.AppSettings("host")
_ftp.Timeout = 999999999
_ftp.DebugResponses(True)

'fire up ftp
_ftp.Connect()

'authenticate
_ftp.Login(ConfigurationManager.AppSettings("username"), ConfigurationManager.AppSettings("password"))

_ftp.ChDir(dir)
'_ftp.ChangeRemoteDir(dir)

_ftp.Put(FileHelper.Normalize(_temp) & FileName, FileName)

It just seems to freeze totally with no progress updates or anything.
0 votes
by (162k points)
Does transferring the same file via a commandline FTP client succeed? Any error messages? Sometimes the server can time out.
0 votes
by (240 points)
Everything seems to work fine. I've tested with multiple ftp sites, and the component still exhibits the same issue. Other ftp clients work fine.
0 votes
by (162k points)
What FTP server are you running against? We may be able to test against it and replicate the problem.
0 votes
by (240 points)
I just emailed the credentials for our server to your support email address.
0 votes
by (162k points)
We'll take a look - thanks.

I just emailed the credentials for our server to your support email address.

Categories

...