error writing mime multipart body part to output stream

Mutu Yolbulan picture Mutu Yolbulan · Jun 13, 2014 · Viewed 23.1k times · Source

I have code that does async file uploads which works fine on my dev vm but after I deployed it to the client system, I keep getting this error:

"error writing mime multipart body part to output stream"

I know this is the line that is throwing the error but I can't seem to figure out why:

//Read the form data and return an async task.
await Request.Content.ReadAsMultipartAsync(provider);

The file size was only 1MB and I even tried different file types with much smaller sizes. Why would this occur, I need ideas

Answer

Kiran Challa picture Kiran Challa · Jun 13, 2014

Since the error message is mentioning about an error while writing to output stream, can you check if the folder to where the response is being written out has necessary permissions for your application to write.