So I tried to run this:
Object boo = new Object();
Notification n = new Notification("test notification", boo);
cl.sendNotificationToHost(n);
and got this error: java.io.NotSerializableException: java.lang.Object
I think this may mean that any objects that are encapsulated in our
Notifications will have to be serializable. This sucks. Perhaps Jules
can help us get around this?
Hamy
PS - in my working copy, I already changed the notifications to this:
public class Notification implements Serializable {...}