Need a cloud file share with api and security
My client doesn't want to have ftp on the production field (understandable). We generate ftp files that we want to make available to our clients, but they have no way to receive.
I need the following:
- API for automatic data loading
- The ability to have easy access to ftp or http.
- Directory / file protection capability
0
a source to share
1 answer
I am uploading statistics using a simple C # application on the clients server using HTTPS on our web server.
using System.Net;
WebClient client = new WebClient();
client.UploadFile("https://website/upload", "PUT", localpathtofile);
Our IIS server only has an unencrypted, writable IIS folder and an SSL certificate.
+1
a source to share