arraycollection « flex « Java Enterprise Q&A





1. Passing an ArrayCollection from ColdFusion to Flex (with BlazeDS)    stackoverflow.com

When pushing objects from ColdFusion to Flex via BlazeDS, and mapping the classes using RemoteClass...

[RemoteClass(alias="blah.blah")]
...is it possible to have ColdFusion "Arrays" (or some Java equivalent) automatically mapped to ActionScript ArrayCollections? This ...

2. ActionScript/Flex ArrayCollection of Number objects to Java Collection using BlazeDS    stackoverflow.com

I am using Flex 3 and make a call through a RemoteObject to a Java 1.6 method and exposed with BlazeDS and Spring 2.5.5 Integration over a SecureAMFChannel. The ActionScript is ...

3. LCDS - Expect List, get ArrayCollection of Integer    stackoverflow.com

I have a POJO which declares a collection of List<Long>. We're currently sending an ArrayCollection of Number, and it's arriving at the client as an ArrayCollection, populated with Integers. Given the issues with ...

4. ArrayCollection not returning absolute length when filterfunction is apllied on it    stackoverflow.com

My Dataprovider for a grid is an arrayCollection which is dynamically loaded with Objects . for example : a person object with persionID,PersonName ..etc . I applied a filter function on my ...

5. instead of arrayCollection    stackoverflow.com

I am trying to return values from java into flex front end using BlazeDs.Successfully blazeds is connecting while retrieving the values it is showing [object Asynvtoken] am not getting values from ...

6. Unknown AMF type '16':issue in using arraycollection at java end recieved from flex end using AMF    stackoverflow.com

while calling a java side function from flex side I am having following problem this works java side

//in FlexService class
public List<Car> javaFunction(String model){
 return carList;
}
flex side
flexService.javaFunction("merc");
while this doesn't work java side
//in FlexService.java ...

7. Possible to get Flex to use custom ArrayCollection for remote object from server?    stackoverflow.com

I am thinking of writing a subclass of ArrayCollection, similar to ClearToolkit's that can be smart about managing my remote objects when coming back from BlazeDS. I am wondering if it is ...