Reputation: 446
I found that define the environment variable KRB5RCACHETYPE=none can disable kerberos replay cache in c/c++ applications, Java has it's own implementation of kerberos authentication, does anyone know how to disable replay cache in Java?
Upvotes: 0
Views: 2344
Reputation: 18405
I would disable replay detection: http://docs.oracle.com/javase/1.5.0/docs/api/org/ietf/jgss/GSSContext.html#requestReplayDet%28boolean%29
Upvotes: 2