I\'m using the version of MVC that shipped with Visual Studio 2012 express. (Microsoft.AspNet.Mvc.4.0.20710.0)
I assume this is RTM version.
I\'ve found p
You are missing a name attribute on your file input.
name
input
Inputs without it will not get submitted by the browser. So your formdata is empty resulting in IsFaulted being asserted.
IsFaulted