Windows Develop Bookmark and Share   
 index > Windows Forms General > Uploading large files to server with resume support
 

Uploading large files to server with resume support

Hi, can any one please tell me , how can i implement a Windows form application that can upload a large files (average 10 Mb ) to the server. Secondly, please tell me what is the most efficient way to do so.

Serpent  Thursday, July 17, 2008 10:42 AM

implement a FTP client-server application. there are lots of example on the web about how to do this:
http://www.codeguru.com/csharp/csharp/cs_internet/desktopapplications/article.php/c13163/

http://www.codeproject.com/KB/dotnet/dotnetftp.aspx

you can also use an existing ftp server that will reside on the server and you'll only need to write the client application that connects to that server:
http://www.codeproject.com/KB/IP/ftplib.aspx

Lucian Baciu  Thursday, July 17, 2008 11:17 AM
FTP is okay for ~10 MB, you could just restart the transfer when it failed. For true resume support, you need BITS.
nobugz  Friday, July 18, 2008 12:22 AM

implement a FTP client-server application. there are lots of example on the web about how to do this:
http://www.codeguru.com/csharp/csharp/cs_internet/desktopapplications/article.php/c13163/

http://www.codeproject.com/KB/dotnet/dotnetftp.aspx

you can also use an existing ftp server that will reside on the server and you'll only need to write the client application that connects to that server:
http://www.codeproject.com/KB/IP/ftplib.aspx

Lucian Baciu  Thursday, July 17, 2008 11:17 AM
FTP is okay for ~10 MB, you could just restart the transfer when it failed. For true resume support, you need BITS.
nobugz  Friday, July 18, 2008 12:22 AM

You can use google to search for other answers

Custom Search

More Threads

• Add Help to my application
• Drawing in graph
• Inserting text in a RichTextBox at a particular location
• Re: Transform HTML text to WordProcesingML
• problem with toolstrip control and Childform
• Error Creating Window Handle
• How do I override the default behavior of the addnew button in the bindingnavigator?
• Force windows to paint it's self when child window moves
• Would like to disable button (control) focus on an entire form
• MainMenu control does NOT upgrade to MenuStrip Control?