I am using the blueimp jQuery file upload plug-in located here https://github.com/blueimp/jQuery-File-Upload and according to the documentation I should be able to upload a file using HTTP PUT. Here is my init
$('#fileupload').fileupload({
url: baseServer + '/image/upload',
type: 'PUT',
multipart: false
}
According to the stackoverflow answers file upload to wcf using jquery and How to upload a file using an HTTP "PUT" using JQuery? this should be possible however when I examine the data on the wire using fiddler, I see that the headers are set correctly but the body is empty.
Does anyone have a working example of using this plug-in in IE9 from a local file?