views:

36

answers:

2

Hi All,

For windows there is integrated windows authentication. We can configure active directory and join the cleint to the domain. Then all the services on the client that communicates with the iis on the server can use the integrated authentication transparently.

Is there something similar for java, linux and some application server ?

Regards

A: 

I recommend you to use LDAP and PAM.

There is a similar question, where you can find info.

Hope that helps,

Ramon Araujo
A: 

You may want to look at the steps for Moodle, to get NTLM working in Apache, on Linux, as that may be what you are looking for, since you already have active directory.

http://docs.moodle.org/en/NTLM_authentication#APACHE_Configuration

This will be between apache and the browser, so, if you want it to work with Tomcat, then you may need to have to use JK (http://tomcat.apache.org/connectors-doc/) to have connections come in to apache then be forwarded to tomcat, after authentication takes place.

James Black