I have an issue with hazelcast v 3.6.2. Here is and replicatedmap config in hazelcast.xml for
<replicatedmap name="default">
<in-memory-format>BINARY</in-memory-format>
</replicatedmap>
Here is a slice of code which rises an classnotfound exception:
ReplicatedMap<Object, Object> r1 = getHazelCastInstance().getReplicatedMap("DDD");
TokenDef tf = new TokenDef();
tf.setLanguage("en");
tf.setTokenId("RRRR");
tf.setSiebelPassword("RRR");
r1.put("eeee",tf);
r1.remove("eeee"); //!!! CLASS NOT FOUND EXCEPTION
Very strange that it puts token without an exception, but raises on the remove string. It works if I use simple IMap instead of replicated map. Could anyone explain where is difference ?
Thank you in advance.