I need to read the binary of a file and post to a given URL, but without storing the file itself to the server (I can not 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 "bear"), which does not implement HTML5.
Is there any way? Is it possible, for example, to use some upload mechanism to intercept the file at the time it is uploading, then read its contents and cancel the upload via Javascript?