>
> /**
> * Hash code method.
> */
> public int hashCode() {
> return(super.hashCode());
> }
This is the problem. This is delegating to the Object.hashCode method
that uses the object's address as its input, so when the verifier tries
to verify that your hashCode method is right (by creating two keys and
comparing the hashes) it gets different answers when it should get the
same answer.
maybe
return _guid.toString().hashCode()
?
-danch
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user