Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>The simplest way to solve your problem is the following:</p> <p>1) Install Apache Web Server and configure to use NTLM authentication using modntlm</p> <p><a href="http://modntlm.sourceforge.net/">http://modntlm.sourceforge.net/</a> (Similar you can use Kerberos authentication using mod_auth_kerb using <a href="http://modauthkerb.sourceforge.net/">http://modauthkerb.sourceforge.net/</a>)</p> <p>2) Configure mod_jk to your Selvlet container (JBoss or Tomcat) <a href="http://tomcat.apache.org/connectors-doc/generic_howto/proxy.html">http://tomcat.apache.org/connectors-doc/generic_howto/proxy.html</a> After the successful authentication Apache sends the REMOTE_USER header to the servlet container. The header (according the name) contains a user name of the authenticated user Ensure you configure tomcatAuthentication="false" to allow Apache to allow apache to send the REMOTE_USER header</p> <p>3) Implement and configure in Spring Security your own PreAuthenticatedProcessingFilter: <a href="http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#d0e6167">http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#d0e6167</a> It should be very similar to the Request-Header Authentication filter: <a href="http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#d0e6295">http://static.springsource.org/spring-security/site/docs/3.1.x/reference/springsecurity-single.html#d0e6295</a> In addition, you should omit a domain name from the user name. The user name is sent in the REMOTE_USER header after NTLM or Kerberos authentication.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload