FTP and dotnet

  • Thread starter Thread starter Alvertz
  • Start date Start date
A

Alvertz

Hi,

Dotnet cannot upload huge files(more than 4 MB without tweaking the
parameters in web config)
http://support.microsoft.com/default.aspx?scid=kb;en-us;323246.

So i am trying to upload files greater than 4 MB using FTP server. i
am doing some socket programming as in
http://support.microsoft.com/default.aspx?scid=kb;en-us;832679.

My question is "Will the same limit of 4 MB apply to the FTP client in
vb also?? since i am uploading the files to FTP server will i be able
to upload huge files without timeout or aspnet wp restarting??

Thanks,
Ramya
 
It may sound obvious, but FTP requires an FTP client at one end of the
communication and an FTP server at the other. There are no limits to the
size of a file sent via FTP. However, FTP, by itself, it not secure. There
is a secure variant of FTP that uses SSL, but you won't get there with
socket programming. For that, I'd recommend you buy a component. The SSL
handshake is a bit complicated.

So, as long as your VB app is running on a client machine, you can use FTP
to upload large files in an non-secure manner.

There is a protocol called SSH that will allow files to be copied securely
(it is not FTP, but it is secure file transfer). You would need an SSH
server at one end and an SSH client at the other... all of this is open
source.

HTH,
--- Nick
 
Hi,

I have started implementing this approach so i would like to know
before hand if i can upload huge files without problems...

Thanks.
 
Back
Top