I have a kendo upload on my page and it works fine in firefox but when i test in IE i get
'{"Unexpected end of MIME multipart stream. MIME multipart message is not complete."}'
my server handler is:
and it fails at the Read part bu as i say it works fine with FF any ideas?
'{"Unexpected end of MIME multipart stream. MIME multipart message is not complete."}'
my server handler is:
[WebInvoke(Method = "POST", UriTemplate = "/{id}")] public void Upload(HttpRequestMessage request, string id) { var task = request.Content.ReadAsMultipartAsync(); task.Wait();