如果你還沒有解決你的問題,你能提供你的web.xml嗎?
的安全約束應該是這樣的:
<security-constraint>
<display-name>Application Security Constraint</display-name>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>DELETE</http-method>
<http-method>GET</http-method>
<http-method>POST</http-method>
<http-method>PUT</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>Everyone</role-name>
</auth-constraint>
</security-constraint>
<security-constraint>
<display-name>Login Page</display-name>
<web-resource-collection>
<web-resource-name>Unprotected Login Page</web-resource-name>
<url-pattern>/login.jsp</url-pattern>
</web-resource-collection>
</security-constraint>
<security-role>
<role-name>Everyone</role-name>
</security-role>
我有我自己的身份驗證過濾器,所以我的配置與上面的配置不相似。 我已經解決了我的問題:我創建了一個特殊的鏈接,它不會在標題中創建ntlm-like-garbage並在用戶輸入憑據後提供登錄。所以我在我的應用程序中有2個入口點。不完美,但它的作品。 – 2011-02-21 08:23:07