문제

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

도움이 되었습니까?

해결책

use charles proxy to view server response in AMF format

charles proxy website

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top