posted 20 years ago
Assuming that you're talking about java.awt.Image (which doesn't implement Serializable, I believe), you could consider writing the image into a byte array, send the byte array to the RMI stub, and have the server-side object read the raw bytes back into an Image object.
For example, you could do something like
[ July 25, 2004: Message edited by: Lasse Koskela ]