URLRequest with DELETE Method

You need to find a way to send the removal method from Flash Player (Flex). This is currently not done by default (other than AIR), but I'm sure someone added the URLRequestHeader to make it work correctly.

I tried this, it does not work:

request.requestHeaders = [new URLRequestHeader("X-HTTP-Method-Override", 
     DELETE_REQUEST_METHOD)];
+3
source share
2 answers

Due to limitations in NPAPI, this is not currently possible. The only work in Flash Player is to use as3httpclientlib , which creates a new HTTP client through Socket, and not through the browser API.

+4
source

HTTPService , "DELETE" "".

0

Source: https://habr.com/ru/post/1728402/


All Articles