Re: [flexcoders] Flex and REST

2009-09-04 Thread DannyT
2009 at 3:52 AM, claudiu ursica wrote: > >> >> >> If your Rest API is exposing XML you won't be needing any additional >> libs... the HTTPService class will do just fine ... >> >> C >> >> -- >> *From:* Haykel

Re: [flexcoders] Flex and REST

2009-09-03 Thread Richard Rodseth
additional > libs... the HTTPService class will do just fine ... > > C > > -- > *From:* Haykel BEN JEMIA > *To:* flexcoders@yahoogroups.com > *Sent:* Thursday, September 3, 2009 1:45:11 PM > *Subject:* Re: [flexcoders] Flex and REST > > > &

Re: [flexcoders] Flex and REST

2009-09-03 Thread claudiu ursica
If your Rest API is exposing XML you won't be needing any additional libs... the HTTPService class will do just fine ... C From: Haykel BEN JEMIA To: flexcoders@yahoogroups.com Sent: Thursday, September 3, 2009 1:45:11 PM Subject: Re: [flexcoders] Fle

Re: [flexcoders] Flex and REST

2009-09-03 Thread Haykel BEN JEMIA
Anyone tried one of these libs? http://code.google.com/p/as3httpclient/ http://code.google.com/p/as3httpclientlib/ They seem to support all required http verbs. Haykel Ben Jemia Allmas Web & RIA Development http://www.allmas-tn.com On Wed, Sep 2, 2009 at 12:55 PM, DannyT wrote: > > > Can

Re: [flexcoders] Flex and REST

2009-09-02 Thread claudiu ursica
Yes we did it using post and get only... And it works C From: Guy Morton To: flexcoders@yahoogroups.com Sent: Wednesday, September 2, 2009 3:56:47 PM Subject: Re: [flexcoders] Flex and REST Many REST-ish APIs just use POST and GET anyway, as support for

Re: [flexcoders] Flex and REST

2009-09-02 Thread Guy Morton
lots of post from flex, even instead of get... You still can build the REST api and use it like that only with GET and POST... not 100% rest but will work... C From: DannyT To: flexcoders@yahoogroups.com Sent: Wednesday, September 2, 2009 2:55:31 PM Subject: [flexcoders] Flex and REST

Re: [flexcoders] Flex and REST

2009-09-02 Thread DannyT
EST api and use > it like that only with GET and POST... not 100% rest but will work... > > C > > > > -- > *From:* DannyT > *To:* flexcoders@yahoogroups.com > *Sent:* Wednesday, September 2, 2009 2:55:31 PM > *Subject:* [flexcoders] Flex

Re: [flexcoders] Flex and REST

2009-09-02 Thread claudiu ursica
.. C From: DannyT To: flexcoders@yahoogroups.com Sent: Wednesday, September 2, 2009 2:55:31 PM Subject: [flexcoders] Flex and REST Can anyone give me the definitive answer to whether you can build REST based apps with Flex? There seems to be an incre

Re: [flexcoders] Flex and REST

2009-09-02 Thread Fotis Chatzinikos
Can you be a bit more specific? What do you mean by REST? If by rest you mean you hit a service you get some results and 'draw' them in flex yes you can do that in more than one ways (remoteObject, httpservice, urlrequest and so on), but i imagine you are interested in httpservice with xml data as

[flexcoders] Flex and REST

2009-09-02 Thread DannyT
Can anyone give me the definitive answer to whether you can build REST based apps with Flex? There seems to be an incredible amount of FUD about the topic and whilst I appreciate it might not be supported in it's purest form I need to know what is involved in supporting a full REST implementation.