我配置了 2 个带有托管服务器的 weblogic 域,如Biemond 的博文中所示, 我使用了
DemoIdentity & DemoTrust
我启用了 SSL 并添加到我部署的应用程序的 web.xml 中:
<login-config>
<auth-method>CLIENT-CERT</auth-method>
<realm-name>myrealm</realm-name>
</login-config>
<security-role>
<description>These are the roles who have access</description>
<role-name>admin</role-name>
</security-role>
并将此角色映射到我的 weblogic.xml 文件中的主体(我在两个 weblogic 服务器/域中添加的用户)。但它不起作用。每次我得到
错误 403 - 禁止
在我的第二个示例应用程序中,我得到
错误 401--未经授权
还有其他人有这个问题吗?或者也许是一个解决方案?
谢谢你的帮助!