Is it feasible to create a REST client with Flex? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:56:09Z http://stackoverflow.com/feeds/question/153420 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex 13 Is it feasible to create a REST client with Flex? Alotor 2008-09-30T14:56:40Z 2009-10-05T07:43:48Z <p>I'm starting a project using a Restful architecture implemented in Java (using the new JAX-RS standard)</p> <p>We are planning to develop the GUI with a Flex application. I have already found some problems with this implementation using the HTTPService component (the response error codes, headers access...).</p> <p>Any of you guys have some experience in a similar project. Is it feasible?</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/153450#153450 -2 Answer by davetron5000 for Is it feasible to create a REST client with Flex? davetron5000 2008-09-30T15:02:05Z 2008-09-30T15:02:05Z <p>I'm using OpenLaszlo on a project with a REST-based interface, and it's HTTP impelmentation is, to put it nicely, lame.</p> <p>We had to:</p> <ul> <li>Allow tunneling everything over <code>POST</code></li> <li>Create a param that returns <strong>all</strong> responses as HTTP/200, with errors embedded</li> <li>Allow for multiple parameters to be specified via CSV and not multiple param instances in the query string</li> </ul> <p>OpenLaszlo is just not capable of being a REST client. The documentation for Flex indicating that it <strong>could</strong> handle these things, but I wouldn't be surprised if it can't.</p> <p>I also noticed that Tomcat (our servlet container) pretty much refused to include a body in a non-2xx response. I had wanted to send errors as XML when a user generated a 4xx, but Tomcat just ignored it and supplied its own HTML-based error message.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/153504#153504 3 Answer by mbrevoort for Is it feasible to create a REST client with Flex? mbrevoort 2008-09-30T15:16:05Z 2008-09-30T15:16:05Z <p>There are definite shortcomings of Flex's ability to act as a pure RESTful client.</p> <p>The comments below are from this <a href="http://fantastic.wordpress.com/2007/12/26/flex-is-not-friendly-to-rest/#comments" rel="nofollow">blog</a>:</p> <blockquote> <p>The problem is HTTPService class has several major limitations:</p> <ol> <li>Only GET and POST methods are supported out of the box (unless you use FDS and set useProxy attribute to true)</li> <li>Not able to set request headers and there is no access to response headers. Therefore I am not able to access the response body in the case of an error.</li> <li>It HTTPService gets a status code anything other 200, it consider an error. (event 201, ouch!!). The FaultEvent doesn’t provide information about the status code any response body. The Flex client will have no idea what went wrong.</li> </ol> </blockquote> <p><a href="http://raibledesigns.com" rel="nofollow">Matt Raible</a> also gave a <a href="http://raibledesigns.com/rd/entry/oscon_2008_web_frameworks_of" rel="nofollow">nice presentation on REST with Rails, Grails, GWT and Flex</a> that have some good references linked from it.</p> <p>Whether it's feasible or not really depends on how much your willing to work around by proxying, etc.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/153570#153570 0 Answer by Yaba for Is it feasible to create a REST client with Flex? Yaba 2008-09-30T15:31:18Z 2008-09-30T15:31:18Z <p>Actually were are already using Flex with a Rest-Style Framework. As mbrevort already mentioned PUT and DELETE methods cannot be directly used. Instead we are doing PUT via a POST and for DELETE we are using a GET on a resource with an URL parameter like ?action=delete.</p> <p>This is not 100% Rest style, so I am not sure, if this works with a JSR 311 implementation. You will need some flexbility on the server side to workaround the PUT and DELETE restrictions.</p> <p>With regards to error handling, we have implemented an error service. In case of an server side error, the Flex application can query this error service to get the actual error message. This is also much more flexible than just mapping HTTP return codes to static messages.</p> <p>However thanks To ECMA scripting of Flex working with XML based REST services is very easy.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/153589#153589 1 Answer by Brandon for Is it feasible to create a REST client with Flex? Brandon 2008-09-30T15:35:54Z 2008-09-30T15:35:54Z <p>Yes, I was able to use POST and access headers with this component:</p> <p><a href="http://code.google.com/p/as3httpclient/wiki/Links" rel="nofollow">http://code.google.com/p/as3httpclient/wiki/Links</a></p> <p><a href="http://www.abdulqabiz.com/blog/archives/flash_and_actionscript/http_authentica.php" rel="nofollow">Example</a></p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/154578#154578 1 Answer by dj_segfault for Is it feasible to create a REST client with Flex? dj_segfault 2008-09-30T19:29:05Z 2008-09-30T19:29:05Z <p>I'm working right now on an application that relies heavily on REST calls between Flex and JavaScript and Java Servlets. We get around the response error code problem by establishing a convention of a &lt;status id="XXX" name="YYYYYY"&gt; block that gets returned upon error, with error IDs that roughly map to HTTP error codes.</p> <p>We get around the cross-site scripting limitations by using a Java Servlet as an HTTP proxy. Calls to the proxy (which runs on the same server that serves the rest of the content, including the Flex content, sends the request to the other server, then sends the response back to the original caller.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/157532#157532 4 Answer by Theo for Is it feasible to create a REST client with Flex? Theo 2008-10-01T13:16:26Z 2008-10-01T13:16:26Z <p>As many have pointed out <code>HTTPService</code> is a bit simplistic and doesn't do all that you want to do. However, <code>HTTPService</code> is just sugar on top of the <code>flash.net.*</code> classes like <code>URLLoader</code>, <code>URLRequest</code> and <code>URLRequestHeader</code>. Using these you can assemble most HTTP requests.</p> <p>When it comes to support for other methods than GET and POST the problem mostly lies in that some browsers (for example Safari) don't support these, and Flash Player relies on the browser for all it's networking.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/163228#163228 10 Answer by Guerry for Is it feasible to create a REST client with Flex? Guerry 2008-10-02T16:10:31Z 2008-10-02T16:10:31Z <p>The problem here is that a lot of the web discussions around this issue are a year or more old. I'm working through this same research right now, and this is what I've learned today.</p> <p>This <a href="http://www.ibm.com/developerworks/websphere/library/techarticles/0808_rasillo/0808_rasillo.html" rel="nofollow">IBM Developer Works article from August 2008</a> by Jorge Rasillo and Mike Burr shows how to do a Flex front-end / RESTful back-end app (examples in PHP and Groovy). Nice article. Anyway, here's the take away:</p> <ul> <li>Their PHP/Groovy code <em>uses and expects</em> PUT and DELETE.</li> <li>But the Flex code has to use POST, but sets the HTTP header X-Method-Override to DELETE (you can do the same for PUT I presume).</li> <li>Note that this is <em>not</em> the Proxy method discussed above.</li> </ul> <p><code><pre> // Flex doesn't know how to generate an HTTP DELETE. // Fortunately, sMash/Zero will interpret an HTTP POST with // an X-Method-Override: DELETE header as a DELETE. deleteTodoHS.headers['X-Method-Override'] = 'DELETE';</pre></code></p> <p>What's happening here? the IBM web server intercepts and interprets the "POST with DELETE" as a DELETE.</p> <p>So, I dug further and found this <a href="http://www.pluralsight.com/community/blogs/dbox/archive/2007/01/16/45725.aspx" rel="nofollow">post and discussion with Don Box</a> (one of the original SOAP guys). Apparently this is a fairly standard behavior since some browsers, etc. do not support PUT and DELETE, and is a work-around that has been around a while. Here's a snippet, but there's much more discussion.</p> <blockquote> <p>"If I were building a GData client, I honestly wonder why I'd bother using DELETE and PUT methods at all given that X-HTTP-Method-Override is going to work in more cases/deployments."</p> </blockquote> <p>My take away from this is that if your web side supports this X-Method-Override header, then you can use this approach. The Don Box comments make me think it's fairly well supported, but I've not confirmed that yet.</p> <p>Another issue arises around being able to read the HTTP response headers. Again, from <a href="http://www.atnan.com/2007/6/11/can-as3-do-rest-or-not" rel="nofollow">a blog post in 2007 by Nathan de Vries</a>, we see this discussed. He followed up that blog post and discussion with his own comment:</p> <blockquote> <p>"The only change on the web front is that newer versions of the Flash Player (certainly those supplied with the Flex 3 beta) now support the responseHeaders property on instances of HTTPStatusEvent."</p> </blockquote> <p>I'm hoping that means it is a non-issue now.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/392229#392229 1 Answer by RogerV for Is it feasible to create a REST client with Flex? RogerV 2008-12-24T21:13:03Z 2008-12-24T21:13:03Z <p>REST is more of an ideology than anything. You go to the REST presentations and they have coolaide dispensers.</p> <p>For Flex apps, rolling a stack in conjunction to BlazeDS and AMF data marshalling is more convenient and more performant.</p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/392269#392269 0 Answer by Scott Evernden for Is it feasible to create a REST client with Flex? Scott Evernden 2008-12-24T22:06:10Z 2008-12-24T22:06:10Z <p>The way I've managed this in the past is to utilize a PHP proxy that deals with the remote web service calls and returns RTU JSON to the client .. </p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/426669#426669 0 Answer by Dustin for Is it feasible to create a REST client with Flex? Dustin 2009-01-09T00:52:13Z 2009-01-09T00:52:13Z <p>I've been working on an open source replacement for the HTTPService component that fully supports REST. If interested, you can find the beta version (source code and/or compiled Flex shared runtime library) and instructions here:</p> <p><a href="http://code.google.com/p/resthttpservice/" rel="nofollow">http://code.google.com/p/resthttpservice/</a></p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/1268688#1268688 0 Answer by David for Is it feasible to create a REST client with Flex? David 2009-08-12T20:57:03Z 2009-08-12T20:57:03Z <p>May be the new flex 4 is the answer <a href="http://labs.adobe.com/technologies/flex4sdk/" rel="nofollow">http://labs.adobe.com/technologies/flex4sdk/</a></p> http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex/1518707#1518707 0 Answer by viatropos for Is it feasible to create a REST client with Flex? viatropos 2009-10-05T07:43:48Z 2009-10-05T07:43:48Z <p><a href="http://wiki.github.com/dima/restfulx%5Fframework/working-with-restfulx-service-providers" rel="nofollow">RestfulX</a> has solved most/all of the REST problems with Flex. It has support for Rails/GAE/Merb/CouchDB/AIR/WebKit, and I'm sure it would be a snap to connect it to your Java implementation.</p> <p>Dima's integrated the AS3HTTPClient Library into it also.</p> <p>Check it out!</p>