HTTPService calls send and receive data in String format,often as XML.
Remoting uses the AMF3 format which is binary andthus much more compact
for large data sets. If you are justtransmitting a few records from you
DB, then you probably won'tnotice a difference between the two
approaches. In terms ofprogramming, remoting is generally more efficient
since you cansend value objects and database results directly back to
Flex anduse the result without having to convert it since AMFPHP takes
careof a...