I want to do SFTP file transfer in GWT.
I have file upload page on click SUBMIT button, the uploaded file has to be transfered. how to perform this in GWT?
I want to do SFTP file transfer in GWT.
I have file upload page on click SUBMIT button, the uploaded file has to be transfered. how to perform this in GWT?
You cannot perform a FTP file transfer through a web browser. With GWT, you can send a file to your server with a FileUpload widget (http://www.gwtproject.org/javadoc/latest/com/google/gwt/user/client/ui/FileUpload.html).
Edit: You have to do this in two steps : Send your file to your server through a form (FileUpload). Send this file from your HTTP server to your FTP server (how to transfer a file through SFTP in java?).