Re: AW: Allowing PUT and DELETE requests in HTTPService

2016-11-09 Thread chechoportnoy
This works! Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Allowing-PUT-and-DELETE-requests-in-HTTPService-tp49018p56414.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

AW: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Christofer Dutz
.. it's not nice, but it works. Chris Von: omup...@gmail.com im Auftrag von OmPrakash Muppirala Gesendet: Montag, 7. September 2015 21:10 An: dev@flex.apache.org Betreff: Re: Allowing PUT and DELETE requests in HTTPService The problem with socket base

Re: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread OmPrakash Muppirala
The problem with socket based http clients are that they bypass the browser completely and hence the browser cache. It hits you really for those GETs you want cache working for. Thanks, Om On Sep 7, 2015 10:16 AM, "Harbs" wrote: > I believe Socket based HTTP Clients can do this. There’s a coup

Re: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Harbs
I believe Socket based HTTP Clients can do this. There’s a couple out there. [1][2]. The author of the first seems to recommend the second.[3] [1]https://code.google.com/p/as3httpclient/ [2] https://github.com/gabriel/as3httpclient [3]http://www.abdulqabiz.com/blog/archives/2008/01/21/as3httpclie

Re: AW: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread OmPrakash Muppirala
issue are very welcome ;-) > > Olaf > > > > -Ursprüngliche Nachricht- > Von: Christofer Dutz [mailto:christofer.d...@c-ware.de] > Gesendet: Montag, 7. September 2015 14:57 > An: 'dev@flex.apache.org' > Betreff: Allowing PUT and DELETE requests in HTTPService

AW: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Krüger , Olaf
?_method=PUT/DELETE... Any news to this issue are very welcome ;-) Olaf -Ursprüngliche Nachricht- Von: Christofer Dutz [mailto:christofer.d...@c-ware.de] Gesendet: Montag, 7. September 2015 14:57 An: 'dev@flex.apache.org' Betreff: Allowing PUT and DELETE requests in HTTPService

Re: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Nicholas Kwiatkowski
This is a restriction of the native http client within AFP stack (Flash Player and AIR). It only supports POST and GET. The work-around is to use a 3rd party HTTP client within your app. Essentially, a client that builds its own HTTP header and then passes it along. There are quite a few librari

Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Christofer Dutz
Hi, I am currently working on a fun project in which we are having a little battle of the client technologies. The backend server is a REST service communicating in JSON. While my Flex client is currently way beyond the others, I just stumbled over a problem which I don't quite know how to wo