使用XAMPP服务器和flex脚本中的actionscript程序从我的程序连接到服务器?

时间:2010-10-26 05:53:00

标签: flex connection xampp

我有以下代码]

connection.objectEncoding = ObjectEncoding.AMF0;
connection.connect("http://localhost/test/test.php"); 

var responder = new Responder(recvdata,recverror);
connection.call("test.test",responder);

但是没有建立连接是什么原因导致不知道需要帮助的原因还有一件事XAMPP安装在D:\ drive中。

提前

thanx

1 个答案:

答案 0 :(得分:0)

好吧我遇到了问题

connection.objectEncoding = ObjectEncoding.AMF3;
connection.connect("http://localhost/flashservices/gateway.php"); 

var responder = new Responder(recvdata,recverror);
connection.call("test.test",responder);

这对我有用,不要忘记在服务器根文件夹中添加AMFPHP。