I'm still blocked with any effort to upload a file or read the file from stream on Azure. I tried adding the mime type as previously suggested but still get :
"The resource you are looking for has been removed, had its name changed, or is temporarily unavailable."
So I am trying to read the file directly into memory and bypass that but this results in exactly the same thing.
Here is the line that triggers the server statement above :
var doc = SpreadsheetDocument.Open(FileUpload1.PostedFile.InputStream, true);
It seems Azure goes to great lengths to prevent reading files from user's machines. I may have to fall back to a desktop app or try another web host.
This is a follow up to my previous question : Browse to file upload fails on Azure website (small file)