1
I need to read the binary of a file and post to a certain URL, but without storing the file itself to the server (I cannot store the file).
To complicate - I would love to use the HTML5 file API for this, but I have to support IE9 (in every sense of the word "support"), which does not implement HTML5.
Is there a way? It would be possible, for example, to use some upload mechanism to intercept the file at the moment it is going up, to then read its content and cancel the upload via Javascript?