Hello!
We have the situation:
There's TCP sockets connection between two JVM.
Through this connection objects (*) are being sent. We put theese objects
into "container" object - DataPacketToSend class object(**).
ObjectInputStream and ObjectOutputStream are used
When the whole system works using the same jar file in different JVM
instances - everything is ok.
But when we recompile source codes on another jar and use it the other JVM
then the sending does not work.
It's a pity we cannot see exceptions.
Now the question appears:
Maybe it's significant that (*) and (*) were recompiled (meybe on another
platform) and now classcast of object from ObjectInputStream to
DataPacketToSend class could not be done?
I don't know now it surely. Please share your knowledge.
Thanks in advance.
Michael.