Hi All,

Was having trouble getting Java List object to Flex ArrayCollection in this
program

*A.java*
package com.package;

public class A {

..................

}

*B.java*
package com.package;

public class B {

    private String dummyField;
    private List<A> listOfA;

   // gettets and setters

}

Now at the flex side

*A.as*
package {

 [RemoteClass(alias="com.package.A")]
 public class A {
   ............
 }
}

*B.as *
package {

 [RemoteClass(alias="com.package.B")]
 public class B {

   public var dummyField:String;
   public var listOfA:ArrayCollection;
 }
}

As shown above, i defined the classes appropriately at flex side. The alias
provided for the flex actionscript class are the correct ones.

When i get the object of B from a remote object and call the listOfA
variable, its always returned as "null". But when i access the dummyField,
am able to get the value that is set into it.

If the return type of the remote service object is List<xxx>, than we get
the result as " event.result as ArrayCollection " - This way its working
perfectly.

But when receiving an Object, which has a List in that and when this is
being accessed its returned as null.

Anyone faced such kind of issue.

Let me know what changes i need to do.

Thanks in advance

-- 
Thanks,
Madan N

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to