Hi,
I want to know how to map an array from my action script to java.
I am using Blazeds.
Say a small code snippet goes something like this :::::::::
*Person.as*
package
{
[RemoteClass(alias="example.Person")]
[Bindable]
public class Person
{
public var lastName:String ;
public var phone:String;
public var objarray:Array;
public function Person()
{
}
}
}
now how does the java class look like on the other end?
I did try using the following class:::::::::::::
*Person.java*
package example;
public class Person {
public String lastName;
public String phone;
public Object[] objarray;
public Person() {
}
}
Please do help me out..
Thanks,
--
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.