Question

I have a few values in Java VO, and using cairgorm framework, i had mapping the Java VO to Action script VO in Flex and given same variables name as java Vo variables name. Now the Vo is mapping fine and when looking the result all variables are displaying as null. Can i know the reason for that.Java returning list of VO's.

package com.configuration
{
    import com.adobe.cairngorm.vo.IValueObject;
    import mx.collections.ArrayCollection; import mx.resources.ResourceManager;

    [Bindable]
    [RemoteClass(alias='com.configuration.ProgressState')]
    public class ProgressState implements IValueObject
    {
        public function ProgressState(){}
        public var ssn:String;
        public var objectType:ObjectTypeEnum;
        public var totalObjectCount:int;
        public var completedObjectCount:int;
        public var failedObjectCount:int;
        public static const TOTAL_COUNT_NOT_SET:int = -1;
    }
}

Thanks, Ravi

Was it helpful?

Solution

use charles proxy to view server response in AMF format

charles proxy website

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top