gpt4 book ai didi

Tomcat和windows集成认证

转载 作者:行者123 更新时间:2023-11-28 21:59:31 25 4
gpt4 key购买 nike

<分区>

我正在开发一个必须在 Tomcat 上运行的 Java 应用程序,我需要能够识别正在访问我的应用程序 Web 的远程用户。

此远程用户在 Windows 上运行,因此我需要获取他的“Windows 登录名”(SAMAccountName Active Directory 属性)。

在 IIS 上最简单。我关注这个Detect user logged on a computer using ASP.NET app让用户登录

server.xml的内容是:

<Realm
className="org.apache.catalina.realm.JNDIRealm" debug="99"
connectionURL="ldap://DAServer:389"
connectionName="userAuth@mydomain.local"
connectionPassword="secret"
referrals="follow"
userBase="OU=mycompany,DC=mydomain,DC=local"
userSubtree="true"
roleBase="OU=groups,DC=mydomain,DC=local"
roleName="name"
roleSubtree="true"
roleSearch="(member={0})"/>

而web.xml的内容是:

<!-- Define a Security Constraint on this Application -->
<security-constraint>
<web-resource-collection>
<web-resource-name>Entire Application</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>

<auth-constraint>
<role-name>myCompany Users</role-name>
</auth-constraint>
</security-constraint>

<!-- Define the Login Configuration for this Application -->
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>myRealm</realm-name>
</login-config>

<!-- Security roles referenced by this web application -->
<security-role>
<description>The role that is required to log in to APP</description>
<role-name>myCompany Users</role-name>
</security-role>

我需要自动登录。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com