5

I am using OpenStack Swift as a blob storage , and they are using the PUT method to create objects.

As for the frontend I am using Kendo UI for Angular 2 for uploading of media. The issue now is for Kendo UI upload service , its only using POST method.

As mention on their site

The handler has to accept POST requests containing one or more fields with the same name as the original input name.

So I am wondering are there any way / configure that I am able to change the uploading method?

If there is currently no option avaliable , will telerik be implementing it? As I believe this is not the only case where the uploading method is an issue.

Community
  • 1
  • 1

2 Answers2

1

This has now been implemented, so you could use the saveMethod and removeMethod options to specify the request type - UploadComponent API

Raisolution
  • 348
  • 1
  • 6
0

Currently there is no way to use PUTmethod for the saveUrl endpoint. Support for other methods will be added in a future version.

knikolov
  • 1,650
  • 1
  • 12
  • 18
  • The latest version of the Upload adds support for setting a [saveMethod](http://www.telerik.com/kendo-angular-ui/components/upload/api/UploadComponent/#toc-savemethod) – Tsvetomir Tsonev Jan 23 '17 at 12:06