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 Omar Fouad
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 > where browsers used to only speak GET and POST (and some sti

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 kno

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 > >

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Omar Fouad
Nope Give a look on the HTTPService Properties wrote: > 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.DEL

Re: [flexcoders] Re: HTTP Methods

2008-02-24 Thread Omar Fouad
You have to use 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]> > wrote: > > > Look up URLRequestMethod constants. Just use them to define the http > > method - no need for proxy of any kind. >

[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 c

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, Befor

[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 co