Flex - Remoting vs HTTPService - when to use what? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:00:19Z http://stackoverflow.com/feeds/question/250058 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what 2 Flex - Remoting vs HTTPService - when to use what? mmattax 2008-10-30T12:49:52Z 2008-11-03T23:05:26Z <p>I have been using Flex for a while and have not used remoting as of yet. Currently my apps use a webservice that generates xml that I use for databinding. </p> <p>What would be the benefit to using remoting over an xml webservice in this use case? Is there a general guideline when I should choose remoting over webservices? </p> <p>Why would I want to use remoting?</p> <p>I have downloaded <a href="http://www.fluorinefx.com/" rel="nofollow">http://www.fluorinefx.com/</a>, but have yet to do any real tinkering...</p> <p>Thanks.</p> http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what/250265#250265 2 Answer by Simon for Flex - Remoting vs HTTPService - when to use what? Simon 2008-10-30T14:02:37Z 2008-10-30T14:07:39Z <p>Speaking personally I use remoting because I prefer AMF to SOAP/XML for the simple reason of speed and packet size. </p> <p>Ted has a good discussion in the relative merits of XML vs. AMF <a href="http://www.onflex.org/ted/2006/12/xmle4x-vs-amf.php" rel="nofollow">here</a></p> <p>Something to consider is what you have already in place on the server and where you think the future of your clients lies. Do you anticipate replacing or extending your clients? If yes then Web Services are a good architectural choice. If you are committing to Flex in the short/medium term then you may be able to squeeze better performance out of remoting with AMF3 vs. your web services. </p> <p>P.S. I once had a link to a very good site which had measurements of the relative performance of AMF and SOAP - I'll see if I can find it and post a link.</p> <p>P.P.S. <a href="http://www.jamesward.com/census/" rel="nofollow">here it is</a>, but it seems not to be working at the moment.</p> http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what/250269#250269 1 Answer by Matt W for Flex - Remoting vs HTTPService - when to use what? Matt W 2008-10-30T14:03:34Z 2008-10-30T14:03:34Z <p>Remoting is meant to make the transfer of data from a remote service to a Flash or Flex app easier and faster. When using remoting there is no need to parse or deserialize the data received from the service. This is because data is sent to the application in native bytecode.</p> <p>One of my main reasons to use remoting is that it is more lightweight than an XML service. This is because XML is a bad format memory-wise, especially for large data sets. XML is great as an exchange format, but once inside your application, due to the verbose tags and possible whitespace, will most likely consume more memory than values expressed in native bytecode.</p> http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what/250573#250573 2 Answer by David Arno for Flex - Remoting vs HTTPService - when to use what? David Arno 2008-10-30T15:21:35Z 2008-10-30T22:19:36Z <p>Web services are great if you are only using simple data transfers between the client and host. You form up the XML message, send it to the server and get a simple XML message, back. You then deserialise it and act upon the data accordingly. AS3 support for XML is superb, you can use it to communicate with any data service and you are in full control at the client end.</p> <p>Where web services fall down is when the data structures passed back and forth become too complex, or when the number of different data structures passed back and forth become too large. Remoting overcomes these problems by providing a heavyweight framework that handles the serialisation for you. Define your .NET/ PHP/ Java or whatever classes, and the framework should provide tools to generate the equivalent AS classes. That way you can send complex object structures back and forth without needing to know how the data is being serialised. Because you don't need to know, it can compress the structure to make it pretty much non-human-readable, or even use binary data so you get speed increases too.</p> <p>Remoting is not suitable for small scale or varied server protocol stuff though. You have to synchronise class structures between server and client; you can only communicate with a compatible remoting servers and the framework adds overhead to the client size and complexity.</p> <p>There is no right answer as to which to use, when. Both have advantages and disadvantages. As a rule of thumb though, use web services for simple stuff and remoting for complex stuff (which is pretty vague advice ;)</p> http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what/259274#259274 0 Answer by Jeduan Cornejo for Flex - Remoting vs HTTPService - when to use what? Jeduan Cornejo 2008-11-03T16:58:31Z 2008-11-03T16:58:31Z <p>If you plan to use the data on other applications (meaning that yours is only one of several frontends) you could use the XML otherwise you will save some time by using remoting.</p> http://stackoverflow.com/questions/250058/flex-remoting-vs-httpservice-when-to-use-what/260281#260281 0 Answer by Marcus Blankenship for Flex - Remoting vs HTTPService - when to use what? Marcus Blankenship 2008-11-03T23:05:26Z 2008-11-03T23:05:26Z <p>Also of note, once you start into this area a good wire protocol analyzer is invaluable. Two written specifically for flash protocols are <a href="http://www.charlesproxy.com/" rel="nofollow">Charles</a> and <a href="http://kevinlangdon.com/serviceCapture/" rel="nofollow">Service Capture</a>. I just purchased Service Capture, and have been very happy with it. It also has a great "bandwidth simulation" tool which helped when seeing how my pre-loader would look on lower bandwidth connections.</p> <p>Marcus</p>