FTP or HTTP to upload files through ASP.NET?

  • Thread starter Thread starter RayAll
  • Start date Start date
R

RayAll

I am using HTTP to upload files to a database ,I'm just curious if I can do
it through FTP too and what would be the advantages and disadvantages of
these two method?

Thanks
 
FTP is a bit more reliable and efficient, especially for larger files.
It also allows finer grained programatic control.
However, it tends not to be quite as user friendly.
 
But there is another opinin saying that:

HTTP gives you direct access to the stream from within asp.net so its easy
to work with he binary object

What do you think about this?
 
What do you mean by reliability?

Thanks
Steve C. Orr said:
FTP is a bit more reliable and efficient, especially for larger files.
It also allows finer grained programatic control.
However, it tends not to be quite as user friendly.
 
HTTP transfers seem to be a bit more susceptible to glitches from my
experience.
Also, with advanced FTP functions you can resume interupted file transfers.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net
 
From my experience, I see the opposite. I once had to write a service that
downloads documents automatically at intervals from an FTP server, and
handling all of the errors in the process took me weeks to write. FTP does
no parity checking, uses no checksums, and dropped packets are a regular
occurrence.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
Resuming the file transfer thrugh an ASP.NET application????



Can you guide me to some related docs in this context?



Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Upload and server FTP 2
FTP Upload 12
Http file upload 3
Uploading file using FtpWebRequest 1
Locating the ftp log file 3
FTP Site 2
FTP To Database 5
Multiple File Upload with ASP.NET 9

Back
Top