I have developed a program which compresses JPG files, and creates an XML file to link images to keywords etc. Once the user has entered all info, they can save to disk, or upload to the internet.
To upload to the internet, I have used FTP. I have used the "edtftpnet" version 1.1.4 assembly for this. To upload, I have decided to upload each individual file seperately, as uploading one large file may cause problems. Each image can be between 60kb and 250kb. Any number of images can be uploaded, but normally no more than 100 at a time.
First of all - is this the best approach?
Secondly, I am getting problems with the FTP - I am loosing connection while uploading. If this happens, not all the files are uploaded, and i need to manually upload them without my program. How can i prevent this, or make sure that all images are uploaded? (Assuming no hardware problems or no physical connection to the internet is lost)
Thirdly - this program is going to be used by a few people (maximum 10), so i would like to know of potential security issues of using standard FTP.
To upload to the internet, I have used FTP. I have used the "edtftpnet" version 1.1.4 assembly for this. To upload, I have decided to upload each individual file seperately, as uploading one large file may cause problems. Each image can be between 60kb and 250kb. Any number of images can be uploaded, but normally no more than 100 at a time.
First of all - is this the best approach?
Secondly, I am getting problems with the FTP - I am loosing connection while uploading. If this happens, not all the files are uploaded, and i need to manually upload them without my program. How can i prevent this, or make sure that all images are uploaded? (Assuming no hardware problems or no physical connection to the internet is lost)
Thirdly - this program is going to be used by a few people (maximum 10), so i would like to know of potential security issues of using standard FTP.