Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Flex equivalent of GWT-RPC?

Right now a lot of my applications use GWT-RPC for retrieving POJO's from a GWT RemoteService which in turn calls a Web Service (SOAP) to get the data. I am evaluating Flex and didn't really see anything truly analogous to this simple architecture. Anything I may have missed?

like image 566
Mike C. Avatar asked May 23 '09 02:05

Mike C.


2 Answers

AMF is Adobe's compact binary message format for use in Flash / Flex applications. BlazeDS is the open source reference implementation for Java, using essentially nothing more than a simple "message broker" servlet to handle requests. This is similar to how services are exposed in GWT, although Blaze uses a single servlet, not multiple as in GWT.

http://opensource.adobe.com/wiki/display/blazeds/BlazeDS/

http://download.macromedia.com/pub/labs/amf/amf3_spec_121207.pdf

like image 93
cliff.meyers Avatar answered Oct 14 '22 05:10

cliff.meyers


BlazeDS, particularly with Spring Integration.

like image 21
cletus Avatar answered Oct 14 '22 07:10

cletus