No this is not specific to any app server. I am trying to use a simple
java application that instantiates the JndiLoginModule. This login module can be configured to talk to LDAP directory using a config file. I tried using that, but i am getting run time exception when i specify following line in my config file-
LDAPModule{
com.sun.security.auth.module.JndiLoginModule required user.provider.url="ldap://<hostname>:636/DC=<Dc name>,DC=<domain>" debug=true useFirstPass=true tryFirstPass=true storePass=true clearPass=true;
}; I refering the JAAS tutorial on sun site to configure the login config file...