[jboss-user] [JBossCache] - What does this ReplicationException mean?

2007-05-24 Thread jamieqho
Hi, I just realized that my application should be using the cache in REPL_SYNC mode, not REPL_ASYNC. The caches have to always be in sync. Now I notice that my servers are throwing ReplicationExceptions. They seem to be colliding and deadlocking. Is this a fatal error? Should my servers be

[jboss-user] [JBossCache] - Re: What does this ReplicationException mean?

2007-05-24 Thread jamieqho
Here is the entire stack trace in case you need it: org.jboss.cache.ReplicationException: rsp=sender=10.133.192.106:3439, retval=null, received=false, suspected=false at org.jboss.cache.CacheImpl.callRemoteMethods(CacheImpl.java:1984) at

[jboss-user] [JBossCache] - Re: What does this ReplicationException mean?

2007-05-24 Thread jamieqho
Sorry, one more thing... those IPs I gave above are the same because I am running two servers on the same machine. Would that cause replication time outs like this? Thanks, Jamie View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4048518#4048518 Reply to the

[jboss-user] [JBossCache] - Re: Cache startup problems

2007-05-14 Thread jamieqho
Thanks for the help! The JDK version was the issue. The machine that compiled using JDK 1.6 and ran using 1.5 had issues. Everything works fine if I just compile and run using 1.5. Thanks, Jamie View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4045579#4045579

[jboss-user] [JBossCache] - Re: ExpirationAlgorithm (2.0.0.CR1) doesn't work with expiry

2007-05-09 Thread jamieqho
I don't have a more elegant solution. Thanks for the fix! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4044356#4044356 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4044356 ___

[jboss-user] [JBossCache] - Cache startup problems

2007-05-09 Thread jamieqho
Hi, Does anyone know what the exception below means? I have one particular machine that doesn't seem to work unless I start it up first before any of the other machines in my cluster. Order seems to matter. If I don't start up this machine first, I get the error below. Thanks, Jamie 09

[jboss-user] [JBossCache] - Re: Cache startup problems

2007-05-09 Thread jamieqho
I am having better luck if every machine in the cluster run the exact same version of Java. Does anyone know why? Thanks, Jamie View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4044437#4044437 Reply to the post :

[jboss-user] [JBossCache] - Re: Cache startup problems

2007-05-09 Thread jamieqho
I get this exception when using Java 1.6.0. I seem to have better luck with 1.5.0_06 but I am now seeing this new exception intermittently during startup: java.lang.IllegalAccessError: tried to access class java.util.AbstractMap$SimpleEntry from class org.jboss.cache.util.MapCopy at

[jboss-user] [JBossCache] - ExpirationAlgorithm (2.0.0.CR1) doesn't work with expiry dat

2007-05-08 Thread jamieqho
Hi, In ExpirationAlgorithm.java, elements are being removed from a TreeMap like this: boolean found = set.remove(new ExpirationEntry(fqn)); This absolutely does not work because your ExpirationEntry objects are sorted by expiration date in the Tree (as specified by your compareTo method).