0

刚开始使用ASP.Net 4.5和我的API总是返回内部服务器错误。异步上传内部服务器错误500 mvc 5

上传API

public class UploadController : ApiController 
{ 
    public async Task<HttpResponseMessage> PostFile() 
    { 
     if (!Request.Content.IsMimeMultipartContent()) 
     { 
      throw new HttpResponseException(HttpStatusCode.UnsupportedMediaType); 
     } 

     string root = HttpContext.Current.Server.MapPath("~/App_Data/uploads/"); 
     var provider = new CustomMultipartFormDataStreamProvider(root); 

     try 
     { 
      await Request.Content.ReadAsMultipartAsync(provider); 

      return Request.CreateResponse(HttpStatusCode.OK); 
     } 
     catch (System.Exception e) 
     { 
      return Request.CreateErrorResponse(HttpStatusCode.InternalServerError, e); 
     } 
    } 

}

我的控制器

var message = new HttpRequestMessage(); 
    var content = new MultipartFormDataContent(); 
    message.Method = HttpMethod.Post; 
    message.Content = content; 
    message.RequestUri = new Uri("http://localhost:12345/api/upload/"); 

    var client = new HttpClient(); 
    client.SendAsync(message).ContinueWith(task => 
    { 
      var result = task.Result.ReasonPhrase; 
      if (task.Result.IsSuccessStatusCode) 
      { 
        //do something 
      } 
    }); 

文件被保存在位置(/ App_Data文件/上传/),但为什么状态代码总是500?

请赐教。感谢

+0

[这里](http://stackoverflow.com/questions/5193842/file-upload-asp-net-mvc-3-0)是文件上传示例。当你得到这个错误时,你能告诉更多吗? –

+0

该链接是同步上传的示例。我的实现是异步的。 – Awoi

+0

有一刻我会发布异步的例子。 –

回答

0

下面是工作控制器的一部分:

[HttpPost] 
    [ValidateAntiForgeryToken] 
    public async Task<ActionResult> Create(Product product, HttpPostedFileBase file) 
    { 
     if (!ModelState.IsValid) 
      return PartialView("Create", product); 
     if (file != null) 
     { 

      var fileName = Path.GetFileName(file.FileName); 
      var guid = Guid.NewGuid().ToString(); 
      var path = Path.Combine(Server.MapPath("~/Content/Uploads/ProductImages"), guid + fileName); 
      file.SaveAs(path); 
      string fl = path.Substring(path.LastIndexOf("\\")); 
      string[] split = fl.Split('\\'); 
      string newpath = split[1]; 
      string imagepath = "Content/Uploads/ProductImages/" + newpath; 
      using (MemoryStream ms = new MemoryStream()) 
      { 
       file.InputStream.CopyTo(ms); 
       byte[] array = ms.GetBuffer(); 
      } 
      var nId = Guid.NewGuid().ToString(); 
      // Save record to database 
      product.Id = nId; 
      product.State = 1; 
      product.ImagePath = imagepath; 
      product.CreatedAt = DateTime.Now; 
      db.Products.Add(product); 
      await db.SaveChangesAsync(); 
      TempData["message"] = "ProductCreated"; 

      //return RedirectToAction("Index", product); 
     } 
     // after successfully uploading redirect the user 
     return Json(new { success = true }); 
    } 
+0

注意:您的上传文件夹的权限已更改:IIS_IUSRS –

+1

我认为问题不在于实现的异步部分。它成功地将文件保存在服务器上,但它总是进入catch块。我不知道为什么。 – Awoi

+0

请原谅我,真的不知道为什么,因为我使用ree返回方法,所以为什么它会捕获真正有趣的。 –