ObjectInputStreams

Henry Wong (henryw@mit.edu)
Wed, 19 Nov 1997 23:56:32 EST

I'm not too sure if this will help fix all of your problems, but I remember
reading in the API somewhere that it helped:

After you create your ObjectOutputStream, you need to flush it. You can
do this by typing the following:

ObjectOutputStream oos = new blah blah blah
oos.flush();

Make sure you call the flush command before you try to create the
ObjectInputStream.

Hope that helps

Henry