Not assigning data from java VO to Flex VO using cairngorm

343 views Asked by At

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

1

There are 1 answers

1
Antonos On BEST ANSWER

use charles proxy to view server response in AMF format

charles proxy website