Facts about RPC services:
• RPC services classes are to be used when you want to control access to certain data as well as to control actions or data that flow out of RPC service classes.
• You can define user actions with RPC.
• This is easy to implement different types of Flex application.
• While using Flex services with Flex tags connect Flex application with SWF file.
RPC services are such as RemoteObject, HTTPService, and WebService
HTTP Service <mx:HTTPService id="adtrack" useProxy="false" showBusyCursor="true" url="{http://www.something.com/data}" method="POST">
Web Service <mx:WebService id="adtrack" useProxy="false" showBusyCursor="true" wsdl="http://www.something.com/data/data.asmx?WSDL" port="ADTWSSoap" service="ADTWS">
|