Hi all,

I have a Java service that returns an ArrayList of type Sale.
At the Flex application I also have the type Sale, the simplifyed
version is this:

package beans
{
        [Managed]
        [RemoteClass(alias="com.beans.Sale")]
        public class Sale {
                public var id:int;
                public var customer:Customer;
                public var product:Product;
        }
}

Although, when I trigger the RemoteObject to retrieve the ArrayList of
Sales (ICollectionView at client), Flex seems to be treating it as a
collection of Object, not Sale.

Is this conversion (Object -> Sale) to be done automatically? What's wrong?
thanks

-- 
André Rodrigues Pena

LOCUS
www.locus.com.br

Reply via email to