If you are getting an array of untyped objects, that means that your class
mapping is not set up properly.  As already mentioned, make sure that you
have the $_explicitType variable set in your php VOs, and the RemoteClass
metadata included in your AS classes.  This might help:
http://www.visible-form.com/blog/flex-amfphp-mapping-value-objects/


On Mon, Nov 10, 2008 at 3:39 PM, Alan <[EMAIL PROTECTED]> wrote:

>   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