This is a migrated thread and some comments may be shown as answers.

Upload issues in IE

1 Answer 185 Views
Upload
This is a migrated thread and some comments may be shown as answers.
Paul Lewis
Top achievements
Rank 1
Paul Lewis asked on 16 Mar 2012, 03:49 PM
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:

[WebInvoke(Method = "POST", UriTemplate = "/{id}")]
    public void Upload(HttpRequestMessage request, string id)
   {
    var task = request.Content.ReadAsMultipartAsync();
           task.Wait();
and it fails at the Read part bu as i say it works fine with FF any ideas?

1 Answer, 1 is accepted

Sort by
0
Paul Lewis
Top achievements
Rank 1
answered on 16 Mar 2012, 05:01 PM
I fixed it,

i switched from using
    <script src="http://cdn.kendostatic.com/2011.3.1407/js/kendo.all.min.js"></script>

to downloading just the upload using the file builder
Tags
Upload
Asked by
Paul Lewis
Top achievements
Rank 1
Answers by
Paul Lewis
Top achievements
Rank 1
Share this question
or