将身份验证从 IIS 传递到 JBoss

将身份验证从 IIS 传递到 JBoss

我正在使用 AJP 将用户从 IIS 8 重定向到 JBOSS(EAP 6)站点并传递身份验证详细信息(Windows 集成身份验证)。

在 JBOSS 5 上我可以使用

<connector name="ajp" protocol="AJP/1.3" scheme="http" socket-binding="ajp" enabled="true" tomcatAuthentication="false"  />

但是 tomcatAuthentication="false"JBOSS 6 不再支持:

有什么新方法可以做到这一点。我发现https://access.redhat.com/solutions/238033但我无法获得访问权限。

答案1

从 v6.1 开始,似乎将其添加到 JBOSS 配置中是正确的方法

<system-properties>
    <property name="org.apache.coyote.ajp.DEFAULT_TOMCAT_AUTHENTICATION" value="false"/>
</system-properties

相关内容