Re: [flexcoders] Re: HTTP Methods

2008-02-26 Thread Fidel Viegas
On Mon, Feb 25, 2008 at 5:03 PM, Troy Gilbert [EMAIL PROTECTED] wrote: Hum... so it does work with the normal HTTPService without using a proxy? Nope, not at all. If you want the full HTTP verb set you've got to use a proxy. Flash Player only speaks GET and POST, due to legacy issues

Re: [flexcoders] Re: HTTP Methods

2008-02-25 Thread Troy Gilbert
Hum... so it does work with the normal HTTPService without using a proxy? Nope, not at all. If you want the full HTTP verb set you've got to use a proxy. Flash Player only speaks GET and POST, due to legacy issues where browsers used to only speak GET and POST (and some still do as far as I

Re: [flexcoders] Re: HTTP Methods

2008-02-25 Thread Omar Fouad
mx:HTTPService id=LoginForm method=GET useProxy=true On Mon, Feb 25, 2008 at 7:03 PM, Troy Gilbert [EMAIL PROTECTED] wrote: Hum... so it does work with the normal HTTPService without using a proxy? Nope, not at all. If you want the full HTTP verb set you've got to use a proxy. Flash

[flexcoders] Re: HTTP Methods

2008-02-24 Thread andrii_olefirenko
Look up URLRequestMethod constants. Just use them to define the http method - no need for proxy of any kind. (the server you are making request to should understand these methods, of course) --- In flexcoders@yahoogroups.com, Fidel Viegas [EMAIL PROTECTED] wrote: Hello folks, I have come

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Fidel Viegas
On Sun, Feb 24, 2008 at 4:36 PM, andrii_olefirenko [EMAIL PROTECTED] wrote: Look up URLRequestMethod constants. Just use them to define the http method - no need for proxy of any kind. (the server you are making request to should understand these methods, of course) Hi Andrii, Before

[flexcoders] Re: HTTP Methods

2008-02-24 Thread andrii_olefirenko
Hmm, yeah, you are right, the doc actually tells that there should be whole branch of constants... Try to put string values directly instead of constants: PUT, DELETE instead of URLRequestMethod.PUT and URLRequestMethod.DELETE. If this won't do magic, then i see only solution is to use socket

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Omar Fouad
You have to use mx:HTTPService On Sun, Feb 24, 2008 at 6:30 PM, Fidel Viegas [EMAIL PROTECTED] wrote: On Sun, Feb 24, 2008 at 4:36 PM, andrii_olefirenko [EMAIL PROTECTED]andriyo%40gmail.com wrote: Look up URLRequestMethod constants. Just use them to define the http method - no need

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Omar Fouad
Nope Give a look on the HTTPService Properties mx:HTTPService id=LoginForm method=GET ... mx:HTTPService id=LoginForm method=DELETE ... mx:HTTPService id=LoginForm method=POST... On Sun, Feb 24, 2008 at 6:48 PM, andrii_olefirenko [EMAIL PROTECTED] wrote: Hmm, yeah, you are right, the

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Fidel Viegas
On Sun, Feb 24, 2008 at 5:54 PM, Omar Fouad [EMAIL PROTECTED] wrote: Nope Give a look on the HTTPService Properties mx:HTTPService id=LoginForm method=GET ... mx:HTTPService id=LoginForm method=DELETE ... mx:HTTPService id=LoginForm method=POST... Hum... so it does work with the