Thursday, October 20, 2011

java.rmi.MarshalException: Failed to serialize Error

This error occurs when trying to invoke a Remote object that is not Serializable. You can fix this by making the object in question (if possible) Serializable by implementing java.io.Serializable.