I have a problem in a system where ~500 servers are communicating with central server through JMS over ~1000 topics. It's a 10 year old system and it worked good until few months ago.
In the last 3 months I had these types of errors:
central server can't deserialize Integer because Integer in the message has wrong SerialVersionID
Deserialize message failed. - cause: java.io.InvalidClassException: java.lang.Integer; local class incompatible: stream classdesc serialVersionUID = 1360651450463909473, local class serialVersionUID = 1360826667806852920
central server can't deserialize unknown class
Deserialize message failed. - cause: java.lang.ClassNotFoundException: No ClassLoaders found for: javnteger.Integer
JMS tries to instantiate Number class which is abstract
Caught JVM Error: java.lang.InstantiationError: java.lang.Number
For all errors problem is localized in one random topic. If messages from that topic are deleted and sent again from servers everything went ok.
I'm suspecting JMS hardware. HDD is ok. We need to test memory and I don't know where to look next.
Anyone has any suggestion?