Hi,
I have a client/server application that I've implemented using
JAVA sockets.
I am getting a "class not found" exception from the server when it tries to readObject().
Here is my client set up:
And my server set up (exception occurs at the readObject() line)
Notice the "myClass" is the class of the object I want to send and receive.
Am I getting this exception because the two "myClass" classes are actually two different sub-classes?
To save time during implementation, I simply copied and pasted the myClass class into both the server and the client classes.