AMF for server-to-server communication?
In last couples of days I've being thinking about this, why should we only take advantage of AMF communication between a Flex/AIR app with our back-end? Now that the specifications of AMF data format were released on Labs and a lot of AMF3 implementations are already all around ( CF, Java, .NET, PHP etc), why not take advantage of this data format for server-to-server communication?
If I have a CF server and I need to consume for example data from a PHP platform, why not doing through AMF if they use AMFPHP? Or instead of consuming a .NET webservice, why not call a WebOrb endpoint?
The cf team could eventually enhance the cfinvoke and createObject to support this.
Something like
or
<cfset endpoint = createObject('amfendpoint','http://someAMFEndpoint')>
<cfset result = endpoint.someMethod( arguments ) >
Toughs?

