Does Flex 4 support put request?

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

link|improve this question

3  
possible duplicate of How to send PUT HTTP Request in Flex – www.Flextras.com Feb 24 '11 at 20:32
feedback

2 Answers

up vote 0 down vote accepted

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.

link|improve this answer
feedback

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

Best regards, Charly

link|improve this answer
Did you mean HTTPService? – www.Flextras.com Feb 25 '11 at 14:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.