$upload.upload({
url: url,
method: 'PUT',
file: imageData
});
Logs of demo in IE9 using Charles logger shows that POST call is made even when method type 'PUT' is selected.
The flash file attached is making a POST call to the server always irrespective of method type specified in upload function.
Do we have a solution for this?