如何禁用websphere 6.1中的基本身份驗證? 我已經寫例如小服務程序 在我的戰爭應用程序,我已經定義是這樣的:禁用基本身份驗證?
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>Example login/realm-name>
</login-config>
<servlet-mapping>
<servlet-name>ExampleServelet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
現在從UI的任何一個與http://server/example/ *可以驗證,有不會是對基本身份驗證的註銷。
我該如何禁用這個避免這種情況?由於某種原因,我不能使用基於表單的身份驗證?