Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的客户不想在生产箱上安装 ftp(可以理解)。我们生成我们希望提供给客户的 ftp 文件,但他们没有能力接收。
我需要以下内容:
我使用 HTTPS 在客户端服务器上使用简单的 C# 应用程序将统计信息上传到我们的 Web 服务器。
using System.Net; WebClient client = new WebClient(); client.UploadFile("https://website/upload", "PUT", localpathtofile);
我们的 IIS 服务器只有一个不可浏览、可写的 IIS 文件夹和一个 SSL 证书。