return LinkedList<Object>
how can i return a LinkedList<Object> from Server to Client suppose that i have in Client already Object-class
# 1
java.util.LinkedList is Serializable, so as long as the objects you're putting in the List are alsoSerializable, you can just declare it as the return type for your remote business method.
ksaksa at 2007-7-12 20:44:52 >
