2

Does Flex 4 support put request?

I know that Silverlight 4 support put request using its client http stack.

JeffryHouser
  • 39,401
  • 4
  • 38
  • 59
Alexey Zakharov
  • 24,694
  • 42
  • 126
  • 197
  • 3
    possible duplicate of [How to send PUT HTTP Request in Flex](http://stackoverflow.com/questions/3641148/how-to-send-put-http-request-in-flex) – JeffryHouser Feb 24 '11 at 20:32

2 Answers2

0

In action script 3 we can use put method using below API

http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLRequestMethod.html

I have used it on desktop apps to upload images to Amazon S3. Since it need air it can be used only on desktop and not on web apps.

Ravi
  • 578
  • 1
  • 5
  • 15
-1

yes, it does. You have to set the 'method' attribute to "PUT".

i.e.:

s:HTTPRequest id="someID" method="PUT" ... 

For more information have look on the Reference-Lib

Alexander
  • 23,432
  • 11
  • 63
  • 73
Charly
  • 1