I am a newbie to Flex 3 and Flash remoting and I can't decide which technique to use for frontend/backend communication.
I started of with XML, but it seems overhead to construct all XMLs in PHP, parse them in Flex, and for sending back data constructing again XMLs in Flex and then parsing them in PHP.
That's why I found AMFPHP, which seems great in the way that I can directly access classes/objects in PHP and modify them. Seems much cleaner. For example doing updates on data in the database, I just call a set method with defined attributes.
Then I also found WebORP.
Would are the greatest disadvantages of AMFPHP? Any recommendations?
Thx a lot, Martin