How to improve the Performance of FtpWebRequest?

后端 未结 18 1174
忘掉有多难
忘掉有多难 2020-11-28 04:46

I have an application written in .NET 3.5 that uses FTP to upload/download files from a server. The app works fine but there are performance issues:

  1. It take

18条回答
  •  误落风尘
    2020-11-28 05:24

    Personally I have migrated all of our apps away from using FTP for file upload/download, and instead rolled a solution based on XML Web Services in ASP.NET.

    Performance is much improved, security is as much or as little as you want to code (and you can use the stuff built in to .NET) and it can all go over SSL with no issues.

    Our success rate getting our clients' connections out through their own firewalls is FAR better than running FTP.

提交回复
热议问题