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
Well I solved my problem by using Springs HiddenHttpMethodFilter This monitors incoming requests for "_method" parameters and allows to override them. So I was able to fake a PUT by adding "?_method=PUT" and a DELETE by adding "?_method=DELETE" to my rest url ... it's not nice, but it works. Chr

Re: AW: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread OmPrakash Muppirala
I believe you can solve this by proxying the calls through Javascript, using ExternalInterface as well. Thanks, Om On Sep 7, 2015 6:45 AM, "Krüger, Olaf" wrote: > Hi, > I ran into the same problem, here's a (very old) summary of the problem: > http://verveguy.blogspot.de/2008/07/truth-about-flex

AW: Allowing PUT and DELETE requests in HTTPService

2015-09-07 Thread Krüger , Olaf
Hi, I ran into the same problem, here's a (very old) summary of the problem: http://verveguy.blogspot.de/2008/07/truth-about-flex-httpservice.html I've found these workarounds: 1) Using " X-HTTP-Method-Override" (Server side must support this): http://blog.arulprasad.com/2010/12/http-put-delete-f