7/15/2011 2:46:22 AM
Title:
what is the uses of webservice, http service and remote object
Hi,
What is the uses of webservice, http service and remote object.
Thanks & Regards,
krishna
7/15/2011 7:25:59 AM
all are methods for server side communication in flash.
httpservice is used to call server pages like php, asp etc and get the result back as http response in text format. This method is the simplest one and used mostly. This method is comparatively a little bit slow than others because along with data the response also carries HTTP request data which is not usually required. Its used when communication is occasional and not very very frequent.
webservice method can directly call the server functions and get the response so its fast and can be used for frequent communications. Here you can just call a webservice page and access its function directly. In httpservice you cannot access the function directly.
remote object is used with java server like blaze, you can create connection and directly access functions and pass data with some data types preserved.
7/15/2011 7:32:37 AM
you can find detailed information to use remoteObject in actionscript
http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html