[Solved] Uploading to an FTP server

I don’t know C++/CLI, but the following statement is certainly wrong: _FtpWebRequest->Method = System::Net::WebRequestMethods::Ftp.UploadFile; System::Net::WebRequestMethods::Ftp is a type and, as the error message indicates (you could have given us the line number!) you’re trying to use it as an expression. Are you trying to obtain a pointer to a static member function? Did you thus … Read more

[Solved] Java: Highscore system [closed]

A viable method would be to create a simple API. If you supply FTP credentials with your app, chances are it will be hacked. If you create a simple HTTP API, you can assign a unique API key to every client, and if someone uses it for spam or whatever, you can just ban them … Read more

[Solved] Implemeting a basic FTP client in Java

You can start by reading up the RFC governing the FTP protocol. With that you can get an idea on how the FTP protocol works, how it sends commands, expected responses etc. You can find a link here: https://www.rfc-editor.org/rfc/rfc959 Aside from that you can have a look at this GitHub repository. In there you’ll find … Read more

[Solved] [Atom][Remote-ftp] Unable to connect ftps/ftpes [closed]

Tried this and worked (see “secure” and “secureOptions” specifically): { “protocol”: “ftp”, “host”: “***FTP_HOSTNAME_HERE***”, “port”: 21, “user”: “***YOUR_USERNAME_HERE***”, “pass”: “***YOUR_PASSWORD_HERE***”, “promptForPass”: false, “remote”: “***REMOTE_PATH_HERE***”, “secure”: true, “secureOptions”: {“rejectUnauthorized”: false, “requestCert”: true, “agent”: false}, “connTimeout”: 10000, // integer – How long (in milliseconds) to wait for the control connection to be established. Default: 10000 “pasvTimeout”: 10000, … Read more