0
votes

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
please provide some code - Timofei Davydik
Use the edit link and add the code inside your question, don't forget to format it properly - grapefrukt
I don't understand this statement: "Now the Vo is mapping fine and when looking the result all variables are displaying as null." Are you sure the VOs are mapping fine if the results of all variables are null? - JeffryHouser
i got the issue. no setter methods in the java VO, so the data is not assigned to the flex VO. i would like to thanks to all to participate and involving for this issue. - RKCY

1 Answers

0
votes

use charles proxy to view server response in AMF format

charles proxy website