我在Biemond's blogpost中看到了2个带有托管服务器的weblogic域
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 - 未经授权
有这个问题的其他人?或者可能是一个解决方案?
感谢您的帮助!