Better file uploading approach: HTTP post multipart or HTTP put? -


Use-case : Upload a simple image file to a server, which the client later receives

  1. Specify a FTP server for the job.

  2. Put HTTP : It can directly upload files to the server without requiring server side / component to handle the biostream.

  3. http post : handlestream server side component by biostream.

I think the use of safely due to possible security problems More effort is required to use Post (POST) on a public website (and generally lessen). OTOH, I think there are so many resources to safely upload files with files and they are checking them in server side scripts, and this is more common.


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -