Is it possible to make a web page that would let userr to upload a file to the server using HTTP PUT?
Which browsers that would work with?
The primary reason for preferring specifically PUT is that it’s handled more optimally on the server (i.e. without extra parsing of the request).
I know it’s possible at least using a java applet or something similar, but I’m only interested with default configuration of at least some browsers (and preferably without javascript too, if possible).
I have found some mentions of xhtml2.0 (xforms1.1) regarding that, but how to do that is still very unclear to me.
A POST request is probably the way to go.
Browsers don’t support this.