フレックス側で AMF を正常に構成しました。クライアントはメッセージを送信していますが、代わりに常に空の応答 (ヘッダーはありますが、本文はありません) を受け取ります。
index.php をデバッグするには? クラスが正しくマッピングされているかどうかを確認する方法は?
これが私のものindex.php
です:
use Project\Entity\Product;
require_once('Zend/Amf/Server.php');
require_once(realpath(APPLICATION_PATH . '/models/Amf/') . DIRECTORY_SEPARATOR. 'AmfService.php');
$server = new Zend_Amf_Server();
$server->setClass('AmfService');
$server->setClassMap("Product", "Product");
echo($server -> handle());
とAmfService.php
:
use Project\Entity\Product;
class AmfService {
public function getProducts(){
$result = array();
$product = new Product();
$product->description = "desc";
$product->title_pl = "title";
$result[] = $product;
return $result;
}
}