Reputation: 2216
I wrote a light http server in C which can handle simple requests. So I totally control the server side and its future evolution.
Now on my Web Application written in Javascript/ExtJS, I need to upload a file on my server. Am I forced to use multipart/form-data to upload a file? Is it bad to directly send the file binary contained in a POST request? I'm afraid that write a parser for multipart/form-data protocol takes me time for nothing...
Upvotes: 0
Views: 1327
Reputation: 70494
The browser will ignore your file input fields if you don't set type of the form to multipart/form-data
so I guess you will have to do that.
Upvotes: 1