views:

5930

answers:

2

I'm using BlazeDS to connect Flex with Java. I'm having trouble passing ArrayLists of custom objects from Flex to java.

I have two objects, one is called Category, the other Section. A Category has an ArrayList of Section objects. I can send an ArrayList of Category objects back and forth between Flex and Java, the problem is when I try to access the sections ArrayList of a Category object that has been returned to Java from Flex, I get the following error:

flex.messaging.MessageException: java.lang.ClassCastException : flex.messaging.io.amf.ASObject

For some reason I'm getting an ArrayList of ASObjects rather than my Section objects. I tried looking up how to explicitly type arrays in actionscript, but the only thing I could find was using a Vector object, which BlazeDS does not support. Is it possible to pass an ArrayList of Section objects within an ArrayList of Category objects, or do I have to find another way around?

+3  A: 

One of the most common complaints with AS3 is the lack of typed arrays. ArrayLists will only contain objects, you will have to cast the results yourself.

Here is an example of a Java and AS3 class that I would pass around.

In Java:

The top level class:

package mystuff;

public class StuffToSend
{
    public List<Section> sections;
    ...
}

Sections class:

package mystuff;

public class Section
{
    public List<Catagory> categories;
    ...
}

Category class:

package mystuff;

public class Category
{
    ...
}

In AS3:

package mystuff
{
    [RemoteClass(alias="mystuff.StuffToSend")] // So AS3 knows which Java class to map
    public class StuffToSend
    {
        public var sections:ArrayCollection;
        ...
    }
}

package mystuff 
{
    [RemoteClass(alias="mystuff.Section")] // So AS3 knows which Java class to map
    public class Section 
    {
        public var categories:ArrayCollection;
        ...
    }
}

package mystuff 
{
    [RemoteClass(alias="mystuff.Category")] // So AS3 knows which Java class to map
    public class Category
    {
        ...
    }
}

You can learn more about remoteObjects here: Data Access

CookieOfFortune
Would I cast it on the AS side or java side? Can you point me in the direction of any examples?
KevMo
Thanks for the example. That's what my code looks like, the problem happens when I pass the ArrayList of Category objects from java to actionscript, then back to java. I get the class cast exception on the following line of code in my java:categories.get(1).getSections();
KevMo
Can you provide the variable declarations? I can't tell why that would cause an error if you do not provide me the types. Maybe you didn't declare the generics correctly?
CookieOfFortune
Here is my Category class in AS3:package my.package{ import mx.collections.ArrayCollection; [Bindable] [RemoteClass(alias="my.package.Category")] public class Category { public function Category() { } ... public var sections:ArrayCollection; }}And Section:package my.package{ import mx.collections.ArrayCollection; [Bindable] [RemoteClass(alias="my.package.Section")] public class Section { public function Section() { } ... public var sectionName:String; }}
KevMo
ouch, sorry about the formatting :(
KevMo
here's my java classes:public class Category implements Serializable { ... private ArrayList<Section> sections;}public class Section implements Serializable { ... private String sectionName;}
KevMo
It's private, set them to public. It's a known issue that Flex will only pick up public members. so public ArrayList<Section> sections. Then it should be picked up correctly on the other end.
CookieOfFortune
That's a bummer. My Category and Section classes are entities and the variables cannot be public.
KevMo
Hmmm... you're going to have to find a way to convert an ASObject(essentially a hashmap) to Section then... not sure how that's setup in your code though.
CookieOfFortune
I guess that will be my task Monday morning :)Thanks for the help
KevMo
+1  A: 

Flex was actually sending back a flex.messaging.io.ArrayCollection object. Below is the code to convert this to an ArrayList of my java class:

public ArrayList<MyObject> convertArrayCollection(ArrayCollection array){
        ArrayList<MyObject> myObjectArray = new ArrayList();
        ASTranslator ast = new ASTranslator();
        MyObject myObject;
        ASObject aso;

        for (int i=0;i< array.size(); i++){
            myObject = new MyObject();
            aso = new ASObject();

            aso = (ASObject) array.get(i);
            aso.setType("com.myPackage.MyObject");
            myObject = (MyObject) ast.convert(aso, MyObject.class);
            myObjectArray.add(myObject);
        }
        return myObjectArray;
    }
KevMo