Hello, It appears that serializing and deserializing Java Arrays, ArrayLists, and Vectors converts them all to ArrayLists. Suppose I need to not only pass the contents of the lists but also retain the type (for instance, a Vector from the client needs to be deserialized as a Vector on the server, and vice versa). I would assume that I need to write custom serializers for arrays and Vectors. Is this right? Has anyone done this, or can give me some advice?
Thanks in advance, Steven Gollery [EMAIL PROTECTED]