情境

我们正在使用Weblogic Server 10.3.4运行我们的webapp,该webapp启用了安全性限制,以便要求用户在使用该应用程序之前登录。用户和组信息应驻留在应用程序数据库中,认证应由WLS(容器)处理。

我已将数据库架构设置为described in this blog article,在WLS控制台中设置了新的安全领域“ app.realm”,并在其中定义了SQLAuthenticator

重新启动WLS之后,我可以在WLS Web控制台的“ app.realm”中从数据库中查看我的用户和组定义。我要验证的用户是WEBAPP_USER组的成员(我在WLS控制台的用户详细信息页面上看到该组的成员身份)。

当我部署应用程序(使用标准设置,在WLS Web控制台中不进行任何调整)并调用受保护的URL时,我将按预期重定向到login.html表单。但是,无论我如何尝试,输入(正确的)密码始终会导致身份验证失败,将我发送到login_error.html页面。出于调试目的,我在SQLAuthenticator中启用了纯文本密码,因此,我可以肯定使用了正确的凭据。

我已经看到了these two线程,但是似乎都无法解决我的问题。

更新1

感谢emzy的评论,我现在看到WLS正在对照默认领域“ myrealm”检查凭据,并尝试针对嵌入式LDAP解析登录用户名:

...
####<20.04.2011 09:29 Uhr MESZ> <Debug> <SecurityAtn> <hostname> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1303284573150> <BEA-000000> <getDNForUser search("ou=people,ou=myrealm,dc=nvs_dev", "(&(uid=app.user)(objectclass=person))", base DN & below)>
####<20.04.2011 09:29 Uhr MESZ> <Debug> <SecurityAtn> <hostname> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1303284573150> <BEA-000000> <DN for user app.user: null>
####<20.04.2011 09:29 Uhr MESZ> <Debug> <SecurityAtn> <hostname> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1303284573150> <BEA-000000> <returnConnection conn:LDAPConnection { ldapVersion:2 bindDN:""}>
####<20.04.2011 09:29 Uhr MESZ> <Debug> <SecurityAtn> <hostname> <AdminServer> <[ACTIVE] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1303284573151> <BEA-000000> <javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User app.user denied
        at weblogic.security.providers.authentication.LDAPAtnLoginModuleImpl.login(LDAPAtnLoginModuleImpl.java:229)
        at com.bea.common.security.internal.service.LoginModuleWrapper$1.run(LoginModuleWrapper.java:110)
        at java.security.AccessController.doPrivileged(Native Method)
        ...


更新2

我现在执行了以下步骤,并使身份验证工作:


SQLAuthenticator添加到WLS控制台中的默认域“ myrealm”
在相应的提供程序设置中将Weblogic的DefaultAuthenticator和新的SQLAuthenticator都设置为SUFFICIENT(“ JAAS控制标志”的调用方式)
重启WLS


但是,仍然存在一个问题:

问题


除了<domain>/server/AdminServer/logs文件夹中的标准日志文件外,WLS是否还有其他日志记录,我可以在其中查看发生了什么?
我做错了什么/我缺少基于表单的身份验证以与我的应用程序一起工作的难题中的哪一部分?
当我在web.xml中显式给出“ app.realm”时,为什么WLS使用“ myrealm”进行身份验证?


这是我的配置详细信息:

web.xml

...
<security-constraint>
  <web-resource-collection>
    <web-resource-name>Webapp Platform</web-resource-name>
    <url-pattern>/*</url-pattern>
  </web-resource-collection>
  <auth-constraint>
    <role-name>USER</role-name>
  </auth-constraint>
  <user-data-constraint>
    <transport-guarantee>NONE</transport-guarantee>
  </user-data-constraint>
</security-constraint>
<login-config>
  <auth-method>FORM</auth-method>
  <realm-name>app-realm</realm-name>
  <form-login-config>
    <form-login-page>/login.html</form-login-page>
    <form-error-page>/login_error.html</form-error-page>
  </form-login-config>
</login-config>
<security-role>
  <description>Standard user</description>
  <role-name>USER</role-name>
</security-role>
...


weblogic.xml

<wls:weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:wls="http://www.bea.com/ns/weblogic/weblogic-web-app"
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd http://www.bea.com/ns/weblogic/weblogic-web-app http://www.bea.com/ns/weblogic/weblogic-web-app.xsd">
  ...
  <security-role-assignment>
    <role-name>USER</role-name>
    <principal-name>WEBAPP_USER</principal-name>
  </security-role-assignment>
</wls:weblogic-web-app>


login.html

<html>
<head>
<title>Login</title>
</head>
<body>
<form method="POST" action="j_security_check">
<table>
<tr><td>Username:</td><td><input type="text" name="j_username"></td></tr>
<tr><td>Password:</td><td><input type="password" name="j_password"></td></tr>
<tr><td colspan=2 align=right><input type=submit value="Submit"></td></tr>
</table>
</form>
</body>
</html>

最佳答案

在控制台上的“服务器”->“调试”选项卡下,可以启用调试/跟踪级别的日志记录。我将尝试启用所有与安全性相关的日志,以查看是否显示任何警告或异常。

10-04 18:00