0

Can someone tell me what the equivalent would be if I was using python? In Java I set the following to FALSE to allow for the underlying Kerberos mech to be used instead of SPNEGO.

javax.security.auth.useSubjectCredsOnly = false

  • Thatparameter does *not* not tell to use Kerberos instead of SPNEGO. – Michael-O Jan 21 '15 at 10:02
  • I'm a bit confused. I know I needed to set that line for my program to work properly. According to information I've found online you set javax.security.auth.useSubjectCredsOnly system property value to false if you want the underlying mechanism to obtain credentials, rather than your application or a wrapper program (such as the Login utility used by some of the tutorials). Shouldn't that be Kerberos? – user2709399 Jan 22 '15 at 15:08
  • Not really, th `false` simply implies that the default module call be called from a `LoginContext`, it does not say what the content of the entry should be. It could be any `LoginModule`. – Michael-O Jan 22 '15 at 15:17
  • i see thanks for the clarification. I will research implementing a login module for the application – user2709399 Jan 23 '15 at 00:53

0 Answers0