On my last AMFPHP project my PHP and Flex VOs were:

package com.mydomain
{
        [Bindable]
        [RemoteClass(alias="UserVO")]

        public class UserVO
        {
                public var id                           :int;
                public var username                     :String;
                public var password                     :String;
                public var last_login                   :String;
                public var user_id                      :int;
                public var usertype_id                  :int;
                public var project_id                   :int;

                public function UserVO()
                {       
                                
                }
        }
}

//////////////////////// PHP ///////////

<?php

class UserVO
{

        var $id;
        var $username;
        var $password;
        var $last_login;
        var $user_id;
        var $usertype_id;
        var $project_id;
        
        // explicit actionscript package
        
        var $_explicitType = "UserVO";
}
?>



On Nov 10, 2008, at 6:07 PM, Fotis Chatzinikos wrote:

Might be completly irrelevant (have not used AMFPHP) but are you using Remote class Metas?

Reply via email to