• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

SSO Issue with weblogic and jdk1.7

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


Hi Team,

I am having problem with jdk1.7 in weblogic 11G (10.3.6 version).

We are having SSO login in our application and able to achieve this with weblogic 11 and jdk1.6 version. But when moved to jdk1.7 I am getting below exception.

Error in KerberosAuthentication.authenticate
java.lang.IllegalArgumentException: No Configuration was registered that can handle the configuration named testApp
at com.bea.common.security.jdkutils.JAASConfiguration.getAppConfigurationEntry(JAASConfiguration.java:130)
at javax.security.auth.login.LoginContext.init(LoginContext.java:259)
at javax.security.auth.login.LoginContext.<init>(LoginContext.java:425)

My jaas.conf file content as below:

testApp {
com.sun.security.auth.module.Krb5LoginModule
required
useKeyTab=false
storeKey=true
usetokenCache=false
principal="testssouser@NSA.COM"
};
Please help me on this.

Thank You...!
 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Are you trying to configure WLS to do Kerberos based authentication?

The step you are following will not work..


Please follow the steps here

http://weblogic-wonders.com/weblogic/2009/11/15/configuring-kerberos-with-weblogic-server/

Let me know if you face issues.

Thanks,
Faisal
 
reply
    Bookmark Topic Watch Topic
  • New Topic