What's the Content-type: application/x-amf
Action Message Format (AMF) is a binary format used to serialize objects graphs such ActionScript objects and XML, or send messages between an Adobe Flash client and a remote service, usually a Flash Media Server or third party alternatives.
The format is often used in conjunction with Adobe's RTMP to establish connections and control commands for the delivery of streaming media. In this case, the AMF data is encapsulated in a chunk which has a header which defines things as the message length and type (whether it is a "ping", "command" or media data).
http://en.wikipedia.org/wiki/Action_Message_Format
Example: Native XML Communication
http://blog.naver.com/PostView.nhn?blogId=lack07kr&logNo=60066401753
Base64 with AS3.0
http://foxarc.com/blog/default.asp?cateID=3
AMF Link more (AMFPHP vs ZENDAMF)
http://mudchobo.tistory.com/424
http://www.flepstudio.org/forum/tutorials/3421-actionscript-3-0-zend-amf.html
http://framework.zend.com/download/latest
http://www.silexlabs.org/amfphp/ Creative communities amfPHP
http://groups.drupal.org/node/12470 AS3 - AMFPHP connection problems Drupal Groups
http://koko8829.tistory.com/
샘플코드
http://www.flepstudio.org/
error_reporting(E_ALL|E_STRICT
require_once "Zend/Amf/Server.
require_once "Comments.php";
$server=new Zend_Amf_Server();
echo($server->handle());//실행
?>
class Comments
{
public function __
{
mysql_connect("
mysql_select_db("
}
public function getAuthors
{
$t = array();
while($row=mysql_
{
array_push($t,$row
}
return
}
}
?>var res:Responder=new Responder(onResult,onError);
my_ta.visible=false;
var wheel_mc:Wheel=new Wheel();
wheel_mc.width=wheel_mc.
NetConnection.Call.Failed amfphp2.0