function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Force.comForce.com 

Does Salesforce supports AMF ?

Hi All,

 

Is there any way we can get SFDC to offer AMF? Does Salesforce supports making AMF calls ?

 

Thanks

Best Answer chosen by Admin (Salesforce Developers) 
joshbirkjoshbirk

If possible, and it would probably highly depend on the cross domain policy of the AMF server at the very least, you might look at Flex as a bridge.  Otherwise you'd probably need to implement some kind of middleware in something like Python or PHP to communicate with both systems.  You might already be aware, but the Wiki page for AMF has a great list of libraries:

 

http://en.wikipedia.org/wiki/Action_Message_Format

 

But at the moment, no plans for AMF support in Apex that I'm aware of.

All Answers

joshbirkjoshbirk

No plans that I'm aware of - are you using Flash/Flex embedded in Visualforce or the like?

Force.comForce.com

I need to integrate Salesforce with an external server. API of this external server only supports AMF calls. 

joshbirkjoshbirk

If possible, and it would probably highly depend on the cross domain policy of the AMF server at the very least, you might look at Flex as a bridge.  Otherwise you'd probably need to implement some kind of middleware in something like Python or PHP to communicate with both systems.  You might already be aware, but the Wiki page for AMF has a great list of libraries:

 

http://en.wikipedia.org/wiki/Action_Message_Format

 

But at the moment, no plans for AMF support in Apex that I'm aware of.

This was selected as the best answer
Force.comForce.com

Thanks a lot joshbirk for your help.